@charset "utf-8";

a,
a:hover,
a:focus {
    text-decoration: none;
}

.mt12 {
    margin-top: 12px;
}

/* #CSS技巧：解决图片缩放变模糊不清晰的问题 */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ===================首页样式========================== */
.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #030303;
}

.banner-mix {
    width: 100%;
    position: relative;
}

.banner-img {
    width: 100%;
    overflow: hidden;
}

.banner-img img {
    width: 100%;
    object-fit: cover;
}

.banner-img img.none-pad-mb {
    height: 100vh;
}

.banner-img img.none-pc {
    min-height: 600px;
}

.banner-cont {
    position: absolute;
    width: 100%;
    color: #fff;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-cont {
    width: 100%;
    text-align: center;
}

.banner-cont-wrap {
    width: 100%;
}

.banner-cont .image {
    max-width: 330px;
}

.banner-cont .title {
    line-height: 1.1;
}

.banner-cont .text {
    line-height: 1.1;
    font-family: "MB";
    opacity: 0.5;
}

.banner-cont-one .banner-cont-dot {
    width: 520px;
}

.banner-cont-one .banner-cont-dot img {
    width: 100%;
    visibility: hidden;
}

.banner-dot {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner-dot #cartoonDot-text {
    width: 100% !important;
    height: 100% !important;
}

.banner-mix-one .banner-img {
    opacity: 0;
}

.banner-shade {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../images/index/bannerOne.png') no-repeat center/cover;
    z-index: 2;
    pointer-events: none;
}

/* -- */
.banner-cont-one .contain {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    justify-content: space-between;
    padding: 0 100px 20px 160px;
}

.banner-cont-one .banner-cont-wrap {
    width: auto;
    pointer-events: auto;
}

.banner-one-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.banner-one-bg img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* 效果 */
.banner-cont .image,
.banner-cont .title,
.banner-cont .text {
    opacity: 0;
}

.swiper-slide-active .banner-cont .image {
    animation: bannerDown 1s ease both .4s;
}

.swiper-slide-active .banner-cont .title {
    animation: bannerUp 1s ease both .5s;
}

.swiper-slide-active .banner-cont .text {
    animation: bannerUp 1s ease both .5s;
}

.oneSlide .banner-cont .image {
    animation: bannerDown 1s ease both .4s;
}

.oneSlide .banner-cont .title {
    animation: bannerUp 1s ease both .5s;
}

.oneSlide .banner-cont .text {
    animation: bannerUp 1s ease both .5s;
}

@keyframes bannerDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes bannerUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* -- */
.banner-scroll {
    position: absolute;
    z-index: 99;
    pointer-events: none;
    width: 100%;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: center;
}

.banner-scroll .text {
    font-family: "MB";
    line-height: 1.1;
    color: #fff;
    display: none;
}

.banner-scroll i {
    display: block;
    position: relative;
    margin: 30px auto 0;
    width: 1px;
    height: 50px;
    background: #fff;
    overflow: hidden;
}

.banner-scroll i::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 0;
    background: #e15613;
    left: 0;
    top: 0;
    animation: bannerScroll 3s linear infinite;
}

@keyframes bannerScroll {
    0% {
        height: 0;
        bottom: auto;
        top: 0;
    }

    50% {
        height: 100%;
        bottom: auto;
        top: 0;
    }

    50.01% {
        height: 100%;
        top: auto;
        bottom: 0;
    }

    100% {
        height: 0;
        top: auto;
        bottom: 0;
    }
}

/* -- */
.banner-control {
    position: absolute;
    width: 100%;
    height: auto;
    background: transparent;
    bottom: 44px;
    right: 0;
    z-index: 99;
}

.banner-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-page p {
    width: auto;
    height: auto;
    border-radius: 0;
    opacity: 1;
    background: transparent !important;
    margin: 0 14px !important;
    display: flex;
    align-items: center;
}

.banner-page p span {
    width: 18px;
    height: 18px;
    display: block;
    position: relative;
    border-radius: 100%;
    background: transparent;
    opacity: 1;
    border: 2px solid transparent;
    transition: all .4s ease;
}

.banner-page p span::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    background: #fff;
    margin: -5px 0 0 -5px;
    transition: all .4s ease;
}

.banner-page p.swiper-pagination-bullet-active span {
    border-color: #e15613;
}

.banner-page p.swiper-pagination-bullet-active span::before {
    transform: scale(0);
}

.banner-page p i {
    display: none;
    width: 50px;
    height: 2px;
    background: #fff;
    overflow: hidden;
    position: relative;
    margin: 0 20px;
    opacity: .7;
}

.banner-page p:last-child i {
    display: none;
}

/* .banner-page p.swiper-pagination-bullet-active i{height: 50px;} */
/* -- */
.banner-play {
    display: none;
    width: 34px;
    height: 34px;
    background: url('../images/index/bannerStop.svg') no-repeat center/12px auto;
    cursor: pointer;
    position: absolute;
    pointer-events: auto;
    border: 1px solid #fff;
    border-radius: 3px;
    left: 50%;
    margin-left: -17px;
    bottom: 26px;
}

.banner-play.active {
    background-image: url('../images/index/bannerStopH.svg');
}

.indTitle {
    width: 100%;
    text-align: center;
    position: relative;
    padding-top: 24px;
}

.indTitle .text {
    line-height: 1;
    position: absolute;
    width: 100%;
    text-align: center;
    font-family: "MB";
    color: #f5f7f9;
    text-transform: uppercase;
    left: 0;
    top: 0;
}

.indTitle .title {
    line-height: 1;
    color: #333;
    position: relative;
    z-index: 2;
}

.indTitle.white .text {
    color: #fff;
    opacity: 0.1;
}

.indTitle.white .title {
    color: #fff;
}

.indTitle p {
    max-width: 860px;
    padding: 15px 0;
    padding-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.indTitle .desc {
    padding-top: 10px;
}

.indfa {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.indfa-list {
    width: 100%;
}

.indfa-ul.mb {
    display: none;
}

.indfa-main {
    width: 700px;
    height: 680px;
}

.indfa-link {
    display: block;
    overflow: hidden;
    position: relative;
}

.indfa-link img {
    width: 100%;
    transition: all .6s ease;
    height: 100%;
}

.indfa-link .title {
    position: absolute;
    width: 100%;
    padding: 30px;
    left: 0;
    bottom: 0;
    z-index: 2;
    color: #fff;
    line-height: 1;
    transition: all .4s ease;
}

.indfa-link .title p {
    position: relative;
    padding-bottom: 14px;
}

.indfa-link .title p::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: 0;
    transition: all .4s ease;
}

.indfa-link:hover img {
    transform: scale(1.04);
}

.indfa-link:hover .title {
    color: #e15613;
}

.indfa-link:hover .title p::after {
    width: 100%;
    background: #e15613;
}

.indfa-more {
    width: calc(100% - 700px);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.indfa-top {
    width: 100%;
    height: 340px;
}

.indfa-bottom {
    width: 100%;
    justify-content: space-between;
}

.indfa-bottom .indfa-link {
    width: calc(50% - 10px);
    height: 320px;
}

.i-about {
    width: 100%;
    position: relative;
    height: 400vh;
}

.i-about-sticky {
    width: 100%;
    top: 0;
    left: 0;
    position: sticky;
    overflow: hidden;
}

.i-about-bg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.i-about-logo {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

.i-about-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.i-about-text {
    width: 100%;
    position: absolute;
    z-index: 3;
    justify-content: center;
    left: 0;
    top: 86vh;
    color: #333;
    transition: all .4s ease;
}

.i-about-text span {
    position: relative;
    margin-left: 24px;
}

.i-about-text span:first-child {
    margin-left: 0;
}

.i-about-text.active {
    opacity: 0;
}

.i-about-shade {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
}

.i-about-content {
    position: absolute;
    width: 100%;
    z-index: 4;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
}

.i-about-desc {
    max-width: 710px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #fff;
}

.i-about-num {
    width: 100%;
    color: #fff;
}

.i-about-num li {
    width: 33.33%;
    text-align: center;
    margin-bottom: 40px;
}

.i-about-num li .num {
    font-family: "MB";
    line-height: 1;
    font-weight: 700;
}

.i-about-num li .title {
    line-height: 1.1;
}

.i-about-num li:nth-child(4) {
    width: 25%;
}

.i-about-num li:nth-child(5) {
    width: 25%;
}

.i-about-num li:nth-child(6) {
    width: 25%;
}

.i-about-num li:nth-child(7) {
    width: 25%;
}

.i-about-more {
    width: 100%;
    justify-content: center;
}

.i-about-more a {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    width: 230px;
    height: 52px;
    padding-top: 2px;
    border: 1px solid #fff;
    border-radius: 26px;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    transition: all .4s ease;
}

.i-about-more a::after {
    content: "";
    width: 24px;
    height: 12px;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 22px;
    background: url('../images/index/indArr.png') no-repeat center;
    transition: all .4s ease;
}

.i-about-more a:hover {
    background: #e15613;
    border-color: #e15613;
}

.i-about-more a:hover::after {
    transform: translateX(-26px);
}

/* -- */
.i-about-content {
    opacity: 0;
    pointer-events: none;
    transition: all .8s ease;
}

.i-about-content.active {
    opacity: 1;
    pointer-events: auto;
}

.i-about-content.active .indTitle {
    animation: i-aboutRun 1s ease both .4s;
}

.i-about-content.active .i-about-desc {
    animation: i-aboutRun 1s ease both .6s;
}

.i-about-content.active .i-about-num {
    animation: i-aboutRun 1s ease both .8s;
}

.i-about-content.active .i-about-more {
    animation: i-aboutRun 1s ease both 1s;
}

@keyframes i-aboutRun {
    0% {
        opacity: 0;
        transform: translateY(60px);
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* -- */

.i-adv {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #d5e4f4;
}

.i-adv .indTitle .text {
    opacity: 0.3;
    color: #cfcfcf;
}

.i-adv .contain {
    position: relative;
    z-index: 4;
}

.i-adv-list {
    width: 100%;
}

.i-adv-list ul {
    margin: -40px 0 0 -40px;
}

.i-adv-list li {
    width: calc(25% - 40px);
    margin: 40px 0 0 40px;
    background: #e15613;
    text-align: center;
    color: #fff;
    transition: all .4s ease;
}

.i-adv-list li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 70px 20px;
}

.i-adv-list li .icon {
    width: 118px;
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all .4s ease;
}

.i-adv-list li .icon img {
    max-width: 100%;
    max-height: 100%;
}

.i-adv-list li .title {
    line-height: 1.1;
}

.i-adv-list li .text {
    width: 100%;
}

.i-adv-list li:hover {
    box-shadow: 0 4px 16px 2px rgba(0, 86, 184, 0.3);
    transform: translateY(-4px);
}

.i-adv-list li:hover .icon {
    transform: translateY(-6px);
}

.i-adv-bird {
    width: 1790px;
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -895px;
    animation: i-advBirdRun 10s linear infinite;
}

.i-adv-bird img {
    width: 100%;
    object-fit: cover;
}

/* @keyframes i-advBirdRun {0%{transform: translate(0,0);}12.5%{transform: translate(-30px,-15px);}25%{transform: translate(-30px,30px);}37.5%{transform: translate(-15px,30px);}50%{transform: translate(0,0);}62.5%{transform: translate(-30px,-15px);}75%{transform: translate(-30px,-30px);}87.5%{transform: translate(-15px,-30px);}100%{transform: translate(0,0);}} */

.indxw {
    width: 100%;
    position: relative;
    overflow: hidden;

    background: url(../images/index/ims_case_bg.jpg);
}

.indxw .indTitle .text {
    color: #999;
    opacity: 0.10;
}

.indxw-mix {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.indxw-left {
    width: 842px;
    position: relative;
    height: 682px;
}

.indxw-left .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.indxw-main {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 50px 40px 30px;
    height: 50%;
    z-index: 2;
    width: 560px;
    overflow: hidden;
}

.indxw-main::after {
    content: "";
    animation: indxwRun 10s linear infinite;
    position: absolute;
    width: 396px;
    height: 360px;
    background: url('../images/index/indwxIcon.png') no-repeat center/100% auto;
    right: -80px;
    bottom: -50px;
}

/* @keyframes indxwRun {0%{transform: translate(0,0);}12.5%{transform: translate(-20px,-10px);}25%{transform: translate(-20px,20px);}37.5%{transform: translate(-10px,20px);}50%{transform: translate(0,0);}62.5%{transform: translate(-20px,-10px);}75%{transform: translate(-20px,-20px);}87.5%{transform: translate(-10px,-20px);}100%{transform: translate(0,0);}} */
.indxw-link {
    background: #f5f7f9;
}

.indxw-link * {
    position: relative;
    z-index: 2;
}

.indxw-link .hint {
    width: 100%;
}

.indxw-link .time {
    color: #666;
    font-family: "MB";
    position: relative;
    height: 32px;
}

.indxw-link .time::after {
    content: "";
    position: absolute;
    width: 46px;
    height: 2px;
    background: #e15613;
    left: 0;
    bottom: 0;
}

.indxw-link .tags {
    margin-left: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    background: #e15613;
    color: #fff;
    padding: 0 10px;
    border-radius: 5px;
    line-height: 1;
}

.indxw-link .title {
    color: #333;
    transition: all .4s ease;
}

.indxw-link .title:hover {
    color: #e15613;
}

.indxw-link .more {
    width: 100%;
}

.indxw-link .more a {
    display: flex;
    color: #666;
    padding-right: 18px;
    background: url('../images/common/arrR.svg') no-repeat right -2px center/18px auto;
    transition: all .4s ease;
    position: relative;
}

.indxw-link .more a:hover {
    color: #e15613;
    background-image: url('../images/common/arrRH.svg');
}

.indxw-link .more a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #e15613;
    right: 0;
    bottom: 0;
    transition: all .4s ease;
}

.indxw-link .more a:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

.indxw-right {
    width: calc(100% - 842px);
    position: relative;
    z-index: 2;
}

.indxw-items {
    width: 100%;
    height: 50%;
    position: relative;
    flex-direction: row-reverse;
}

.indxw-items-cont,
.indxw-items-image {
    width: 50%;
}

.indxw-items-image {
    display: block;
    overflow: hidden;
    height: 341px;
    width: 50%;
}

.indxw-items-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s ease;
}

.indxw-items-image:hover img {
    transform: scale(1.04);
}

.indxw-items-cont {
    position: relative;
    background: #e15613;
    padding: 50px 20px 20px;
}

.indxw-items-cont.indxw-link .time {
    color: #fff;
}

.indxw-items-cont.indxw-link .time::after {
    background: #fff;
}

.indxw-items-cont.indxw-link .title {
    color: #fff;
}

.indxw-items-cont.indxw-link .tags {
    background: #fff;
    color: #e15613;
}

.indxw-items-cont.indxw-link .more a {
    background-image: url('../images/common/arrRW.svg');
    color: #fff;
}

.indxw-items-cont.indxw-link .more a::after {
    background: #fff;
}

.indxw-items:first-of-type {
    left: -50%;
    background: #e15613;
}

.indxw-small {
    position: absolute;
    width: 50%;
    height: 50%;
    right: 0;
    top: 0;
    padding: 50px 20px 20px;
}

.indxw-loop {
    width: 100%;
    display: none;
}

/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900) */
}

@media all and (max-width:1599px) {

    /* 1440 × (700)  */
    .banner-cont-one .contain {
        padding: 0 0 20px 180px;
    }

    .banner-cont-one .banner-cont-dot {
        width: 420px;
    }

    .banner-cont-one .banner-cont-wrap {
        width: calc(100% - 420px);
    }

    .banner-scroll i {
        margin-top: 20px;
        height: 38px;
    }

    .indfa-main {
        width: 560px;
        height: 544px;
    }

    .indfa-more {
        width: calc(100% - 560px);
        padding-left: 16px;
    }

    .indfa-bottom .indfa-link {
        width: calc(50% - 8px);
    }

    .indfa-link .title {
        padding: 24px;
    }

    .i-about {
        height: 430vh;
    }

    .i-adv-list ul {
        margin: -28px 0 0 -28px;
    }

    .i-adv-list li {
        width: calc(25% - 28px);
        margin: 28px 0 0 28px;
    }

    .i-adv-list li a {
        padding: 50px 20px;
    }

    .i-adv-bird {
        width: 1360px;
        margin-left: -680px;
    }

    .indxw-left {
        width: 670px;
    }

    .indxw-right {
        width: calc(100% - 670px);
    }

    .indxw-main {
        padding: 34px 32px 30px;
        width: 450px;
    }

    .indxw-items-cont,
    .indxw-small {
        padding: 40px 18px 20px;
    }

    .indxw-items-cont.indxw-link .more,
    .indxw-small.indxw-link .more {
        margin-top: 40px;
    }

    .i-about-text {
        top: 88vh;
    }

    .indfa-top {
        height: 272px;
    }

    .indfa-bottom .indfa-link {
        height: 256px;
    }

    .indxw-left {
        height: 546px;
    }

    .indxw-items-image {
        height: 272px;
    }

    .indxw-main.indxw-link .more {
        margin-top: 24px;
    }

    .indxw-main::after {
        width: 300px;
        height: 280px;
        right: -60px;
        bottom: -40px;
    }
}

@media all and (max-width:1439px) {

    /* 1360 */
    .i-adv-bird {
        width: 1200px;
        margin-left: -600px;
    }
}

@media all and (max-width:1359px) {
    /* 1280 */
}

@media all and (max-width:1279px) {

    /* 1152 × (700) */
    .banner-cont-one .banner-cont-dot {
        width: 380px;
    }

    .banner-cont-one .banner-cont-wrap {
        width: calc(100% - 380px);
    }

    .indfa-main {
        width: 450px;
        height: 436px;
    }

    .indfa-more {
        width: calc(100% - 450px);
    }

    .indfa-link .title {
        font-size: 18px;
        padding: 18px;
    }

    .indfa-link .title p {
        padding-bottom: 12px;
    }

    .i-about-text span {
        margin-left: 18px;
    }

    .i-adv-list ul {
        margin: -16px 0 0 -16px;
    }

    .i-adv-list li {
        width: calc(25% - 16px);
        margin: 16px 0 0 16px;
    }

    .i-adv-list li a {
        padding: 36px 16px;
    }

    .i-adv-bird {
        width: 1000px;
        margin-left: -500px;
    }

    .indxw-left {
        width: 500px;
    }

    .indxw-right {
        width: calc(100% - 500px);
    }

    .indxw-items-cont,
    .indxw-small {
        padding: 30px 18px 20px;
    }

    .indxw-items-cont.indxw-link .more,
    .indxw-small.indxw-link .more {
        margin-top: 30px;
    }

    .indxw-main {
        padding: 28px 24px;
        width: 400px;
    }

    .indxw-main.indxw-link .more {
        margin-top: 10px;
    }

    .indfa-top {
        height: 218px;
    }

    .indfa-bottom .indfa-link {
        height: 202px;
    }

    .indxw-left {
        height: 486px;
    }

    .indxw-items-image {
        height: 242px;
    }

    .indxw-main::after {
        width: 240px;
        height: 240px;
        right: -50px;
        bottom: -40px;
    }

    .indTitle {
        padding-top: 18px;
    }

    .banner-cont-one .contain {
        padding: 0 0 20px 40px;
    }
}

@media all and (max-width:1151px) {

    /* 1024 */
    .banner-img img.none-pad-mb {
        height: 50vh;
    }

    .i-adv-bird {
        width: 900px;
        margin-left: -450px;
    }

    .indfa {
        padding-bottom: 60px;
    }

    .i-about {
        height: auto;
        padding: 70px 0;
    }

    .i-about-sticky {
        position: static;
    }

    .i-about-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .i-about-logo {
        display: none;
    }

    .i-about-text {
        display: none;
    }

    .i-about-shade {
        opacity: 1;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
    }

    .i-about-content {
        position: relative;
        height: auto;
        opacity: 1;
        pointer-events: auto;
    }

    .banner-cont-one .banner-cont-dot {
        display: none;
    }

    .banner-cont-one .banner-cont-wrap {
        width: 100%;
    }

    .banner-dot {
        display: none;
    }

    .banner-mix-one .banner-img {
        opacity: 1;
    }

    .banner-shade {
        display: none;
    }

    .i-about-num li .text {
        font-size: 16px;
    }

    .banner-cont-one .contain {
        padding: 0;
    }
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

    /* 平板设备 720 适配 */
    @keyframes bannerDown {
        0% {
            opacity: 0;
            transform: translateY(-60px);
            filter: blur(10px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }
    }

    @keyframes bannerUp {
        0% {
            opacity: 0;
            transform: translateY(60px);
            filter: blur(10px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }
    }

    .indfa-main {
        width: 100%;
        height: auto;
    }

    .indfa-more {
        width: 100%;
        margin-top: 16px;
        padding-left: 0;
    }

    .indfa-top {
        height: auto;
    }

    .indfa-bottom {
        margin-top: 16px;
    }

    .indfa-bottom .indfa-link {
        height: auto;
    }

    .i-adv-list li {
        width: calc(50% - 16px);
    }

    .i-adv-bird {
        width: 680px;
        margin-left: -340px;
    }

    .indxw-left {
        width: 100%;
        height: auto;
    }

    .indxw-main {
        width: calc(100% - 24px);
        height: auto;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: 12px;
    }

    .indxw-main::after {
        right: -40px;
        bottom: -20px;
    }

    .indxw-right {
        width: 100%;
        margin-top: 12px;
    }

    .indxw-items {
        height: auto;
        margin-top: 12px;
    }

    .indxw-items:first-of-type {
        left: 0;
        background: #fff;
        flex-direction: row;
    }

    .indxw-items:first-child {
        margin-top: 0;
    }

    .indxw-small {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 12px;
    }

    .indxw-mix {
        border-radius: 0;
    }
}

@media all and (max-width:640px) {

    /* 移动终端以上 360 适配 */
    .banner-img img.none-pc {
        min-height: 400px;
    }

    .banner-cont .image {
        max-width: 160px;
    }

    .banner-cont .title {
        font-size: 24px;
    }

    .banner-cont .text {
        font-size: 16px;
    }

    .banner-scroll,
    .banner-play {
        display: none;
    }

    @keyframes bannerDown {
        0% {
            opacity: 0;
            transform: translateY(-40px);
            filter: blur(10px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }
    }

    @keyframes bannerUp {
        0% {
            opacity: 0;
            transform: translateY(40px);
            filter: blur(10px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }
    }

    .indTitle {
        padding-top: 14px;
    }

    .indfa-bottom .indfa-link {
        width: 100%;
        margin-top: 12px;
    }

    .indfa-bottom .indfa-link:first-child {
        margin-top: 0;
    }

    .indfa-more {
        margin-top: 12px;
    }

    .indfa-bottom {
        margin-top: 12px;
    }

    .indfa-link .title {
        padding: 10px 8px;
        font-size: 14px;
    }

    .indfa {
        padding-bottom: 38px;
    }

    .indfa-ul.pc {
        display: none;
    }

    .indfa-ul.mb {
        display: flex;
        margin: -4px 0 0 -4px;
    }

    .indfa-ul.mb a {
        width: calc(50% - 4px);
        margin: 4px 0 0 4px;
    }

    .indfa-link img {
        height: 160px;
    }

    .i-about .indTitle .text {
        font-size: 22px;
    }

    .i-about .indTitle .title {
        font-size: 20px;
    }

    .i-about .indTitle {
        padding-top: 10px;
    }

    .i-about-desc {
        font-size: 15px;
    }

    .i-about {
        padding: 48px 0;
    }

    .i-about-num {
        margin-top: 28px;
    }

    .i-about-num ul {
        margin-top: -14px;
    }

    .i-about-num li {
        width: 50%;
        margin-top: 14px;
    }

    .i-about-num li .num {
        font-size: 28px;
    }

    .i-about-num li .text {
        margin-top: 4px;
        font-size: 14px;
    }

    .i-about-more {
        margin-top: 30px;
    }

    .i-about-more a::after {
        display: none;
    }

    .i-about-more a span {
        padding-right: 32px;
        background: url('../images/index/indArr.png') no-repeat right center;
    }

    .i-about-more a {
        width: 132px;
        height: 38px;
        border-radius: 19px;
    }

    .i-adv-list ul {
        margin: -4px 0 0 -4px;
    }

    .i-adv-list li {
        width: calc(50% - 4px);
        margin: 4px 0 0 4px;
        transform: translateY(0) !important;
    }

    .i-adv-list li a {
        padding: 28px 15px;
    }

    .i-adv-bird {
        width: 300px;
        margin-left: -150px;
    }

    .i-adv-list li .icon {
        width: 88px;
        height: 88px;
    }

    .i-adv-list {
        margin-top: 32px;
    }

    .i-adv-list li .text {
        display: none;
    }

    .indxw-main::after {
        display: none;
    }

    .indxw-main {
        padding: 20px 15px;
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .indxw-link .title {
        font-size: 18px;
        line-height: 26px;
        height: 52px;
        -webkit-line-clamp: 2;
    }

    .indxw-main.indxw-link .more {
        margin-top: 12px;
    }

    .indxw-items {
        flex-direction: row;
    }

    .indxw-items-image {
        width: 100%;
        display: none;
    }

    .indxw-items-cont {
        width: 100%;
        padding: 20px 15px;
    }

    .indxw-items-cont.indxw-link .more,
    .indxw-small.indxw-link .more {
        margin-top: 12px;
    }

    .indxw-items-cont.indxw-link .title,
    .indxw-small.indxw-link .title {
        font-size: 16px;
        line-height: 24px;
        height: 48px;
    }

    .indxw-left .bg {
        height: 242px;
    }

    .indxw-items-cont {
        background: #f5f7f9;
    }

    .indxw-items-cont.indxw-link .time {
        color: #666;
    }

    .indxw-items-cont.indxw-link .time::after {
        background: #e15613;
    }

    .indxw-items-cont.indxw-link .title {
        color: #333;
    }

    .indxw-items-cont.indxw-link .tags {
        background: #e15613;
        color: #fff;
    }

    .indxw-items-cont.indxw-link .more a {
        background-image: url('../images/common/arrR.svg');
        color: #666;
    }

    .indxw-items-cont.indxw-link .more a::after {
        background: #e15613;
    }

    .indxw-items-cont.indxw-link .title:hover {
        color: #e15613;
    }

    .indxw-items-cont.indxw-link .more a:hover {
        color: #e15613;
        background-image: url('../images/common/arrRH.svg');
    }

    .banner-control {
        bottom: 24px;
    }

    .banner-page p {
        margin: 0 10px !important;
    }

    .banner-page p span {
        width: 12px;
        height: 12px;
    }

    .banner-page p span::before {
        width: 6px;
        height: 6px;
        margin: -3px 0 0 -3px;
    }

    .indxw-right,
    .indxw-left .indxw-main {
        display: none;
    }

    .indxw-loop {
        display: block;
        margin-top: 16px;
    }

    .indxw-loop .swiper-pagination {
        bottom: 0;
    }

    .indxw-loop .swiper-pagination-bullet {
        background: #000;
        margin: 0 6px !important;
    }

    .indxw-loop .swiper-pagination-bullet-active {
        background: #e15613;
    }

    .indxw-loop .swiper-container {
        padding-bottom: 28px;
    }

    .indxw-loop .indxw-main {
        margin: 0;
        transform: translate3d(0, 0, 0);
    }

    .banner-one-bg {
        display: none;
    }
}


/* 首页-解决方案 */
.index_product .box0 {
    margin-top: 45px;
}

.index_product .box0 .item {
    width: 49.5%;
    box-sizing: border-box;
    padding: 0.4rem 0.6rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 0.05rem #f2f2f2;
    transition: 0.4s;
    position: relative;
    margin-bottom: 0.15rem;
    overflow: hidden;
}

.index_product .box0 .item a {
    font-size: 0.18rem;
    text-align: center;
}

.index_product .box0 .item a i {
    font-size: 0.9rem;
    height: 68px;
    line-height: 68px;
}

.index_product .box0 .item a .col-right {
    text-align: left;
    display: flex;
}

.index_product .box0 .item a h3 {
    font-size: 0.24rem;
    margin-bottom: 0.1rem;
    line-height: 1;
}

.index_product .box0 .item a p {
    font-size: 0.16rem;
    color: #999;
    line-height: 1;
    margin-bottom: 0.1rem;
}

.index_product .box0 .item:hover {
    background-color: #e15613;
}

.index_product .box0 .item:hover h3,
.index_product .box0 .item:hover p,
.index_product .box0 .item:hover i {
    color: #fff;
}



.index_product .box {
    margin-top: 40px;
}

.index_product .box .item {
    width: 24.25%;
    box-sizing: border-box;
    padding: 0.4rem 0.6rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 0.05rem #f2f2f2;
    transition: 0.4s;
    position: relative;
    margin-bottom: 0.15rem;
    overflow: hidden;
}

.index_product .box .item .a .content1 i {
    font-size: 68px;
    height: 68px;
    line-height: 68px;

}

.index_product .box .item .a .content2 {
    font-size: 0.3rem;
    color: #000;
    margin-top: 0.15rem;
    transition: 0.4s;
}

.index_product .box .item .a .content3 {
    margin: 0.22rem 0;
}

.index_product .box .item .a .content3 span {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #eeeeee;
}

.index_product .box .item .a .content4 {
    font-size: 0.16rem;
    color: #555;
    line-height: 2;
    height: 0.7rem;
}

.index_product .box .item .a .content5 {
    font-weight: bold;
    margin-top: 0.6rem;
    font-size: 0.16rem;
    color: #e15613;
    font-family: 'gilroy_bold';
    line-height: 2;
}

.index_product .box .item .a .content5 i {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    top: 1px;
}

.index_product .box .item .posi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.4s;
}

.index_product .box .item .posi .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index_product .box .item .posi .posi_main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    box-sizing: border-box;
    padding: 0 0.6rem;
    background: rgba(0, 0, 0, 0.55);
}

.index_product .box .item .posi .posi_main .content2 {
    font-size: 0.3rem;
    color: #fff;
    margin-top: 0.30rem;
    transition: 0.4s;
}

.index_product .box .item .posi .posi_main .content3 {
    margin: 0.15rem 0;
}

.index_product .box .item .posi .posi_main .content3 span {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #e15613;
    vertical-align: middle;
}

.index_product .box .item .posi .posi_main .content4 {
    font-size: 0.16rem;
    color: #fff;
    line-height: 2;
    height: 0.7rem;
}

.index_product .box .item .posi .posi_main .content5 {
    margin-top: 0.15rem;
    font-size: 0.16rem;
    color: #fff;
    font-family: 'gilroy_bold';
    line-height: 2;
}

.index_product .box .item .posi .posi_main .content5 a {
    color: #fff;
}

.index_product .box .item .posi .posi_main .content6 {
    margin-top: 0.3rem;
    padding-top: 0.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.index_product .box .item .posi .posi_main .content6 .item_ {
    width: 50%;
    font-size: 0.16rem;
    margin-bottom: 0.15rem;
    color: #fff;
}

.index_product .box .item .posi .posi_main .content6 .item_ a {
    color: #fff;
}

.index_product .box .item .posi .posi_main .content6 .item_ img {
    margin-right: 0.625rem;
    vertical-align: middle;
}

.index_product .box .item:hover {
    box-shadow: 0px 0px 0.16rem #ddd;
}

.index_product .box .item:hover .posi {
    opacity: 1;
}


/* 首页-竞争力 */
.i-adv {
    width: 100%;
    background: #fafafa;
    /* background: url(../images/index/ims_case_bg.jpg); */
}

.adv-items {
    width: 100%;
    margin-top: 56px;
    overflow: hidden;
}

.adv-items ul li {
    width: 23.5%;
    margin-right: 2%;
    float: left;
    border-radius: 10px;
    overflow: hidden;
    transition: width .5s ease;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.adv-items ul li:last-child {
    margin-right: 0;
}

.adv-img {
    width: 100%;
    height: 420px;
    position: relative;
}

.adv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adv-cont {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: url(../images/index/mask.png) bottom center no-repeat;
    background-size: 100% auto;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.adv-cont::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all .4s ease;
    z-index: -1;
}

.adv-cont>a {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    z-index: 100;
}

.adv-cont-center {
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: all .6s ease;
    transform: translateY(20px);
}

.adv-cont-center p {
    font-size: 20px;
    color: #fff;
    line-height: 28px;
}

.adv-cont h2 {
    font-size: 24px;
    color: #fff;
    position: absolute;
    bottom: 32px;
    left: 0;
    text-align: center;
    width: 100%;
    transition: all .4s ease;
}

.adv-items ul li:hover .adv-cont h2 {
    color: #fd7f43;
}

.adv-items ul li:hover .adv-cont::after {
    opacity: 1;
}

.adv-items ul li:hover .adv-cont-center {
    opacity: 1;
    transform: translateY(0px);
}

.adv .btn_center {
    margin-top: 34px;
}

/*首页 视频介绍*/
.t_syk3 {
    background: #fff;
    overflow: hidden;
    position: relative;
}

.t_syk3video {
    width: 100%;
    height: 520px;
    position: relative;
}

.t_syk3video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
}

.t_syk3bg {
    width: 100%;
    position: absolute;
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    transition: all 1.56s;
    z-index: 6;
}

.t_syk3bg img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
}

.t_syk3nr {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.t_syk3shu {
    font-size: 30px;
    line-height: 1;
    font-weight: bold;
    color: #f15344;
    transition: all 0.36s;
}

.t_syk3li {
    width: 33.333333%;
}

.t_syk3le {
    width: 52%;
}

.t_syk3xshu {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    transition: all 0.36s;
}

.t_syk3nr {
    padding-top: 0.8rem;
}

.t_syk3nr .t_yiqih2 {
    margin-bottom: 20px;
}

.t_syk3nr .t_yiqiduan {
    margin-bottom: 15px;
}

.t_syk3shu {
    margin-bottom: 15px;
}

.t_syk3ul {
    margin-bottom: 30px;
}

.t_syk3 .t_yiqih2 h2 {
    transition: all 0.36s;
    font-weight: bold;
}

.t_syk3 .t_yiqiduan p {
    transition: all 0.36s;
}

.t_syk3video::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .03);
    z-index: 2;
}

.t_yiqih2 h2 {
    font-size: 42px;
    color: #333;
    line-height: 1.5;
}

.t_yiqih2.t_yiqih2_1 h2 {
    color: #f15344;
}

.t_yiqiduan p {
    color: #666;
    font-size: 18px;
    line-height: 1.75;
}

.t_yiqiduan.t_yiqiduan_1 p {
    color: #fff;
}


.t_yiqidesc {
    margin-bottom: 36px;
}

.t_syk3:hover .t_syk3bg {
    left: -100%;
}

.t_syk3:hover .t_yiqih2 h2 {
    color: #fff;
}

.t_syk3:hover .t_yiqiduan p {
    color: #fff;
}

.t_syk3:hover .t_syk3shu {
    color: #fff;
}

.t_syk3:hover .t_syk3xshu {
    color: #fff;
}

.t_syk3:hover .t_yiqidesc {
    color: #fff;
}


.t_syk3 .more {
    width: 100%;
    margin-bottom: 35px;

}

.t_syk3 .more a {
    display: flex;
    color: #333;
    padding-right: 18px;
    background: url('../images/common/arrR.svg') no-repeat right -2px center/18px auto;
    transition: all .4s ease;
    position: relative;
}

.t_syk3 .more a:hover {
    color: #e15613;
    background-image: url('../images/common/arrRH.svg');
}

.t_syk3 .more a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #e15613;
    right: 0;
    bottom: 0;
    transition: all .4s ease;
}

.t_syk3 .more a:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}


.t_syk3:hover .more a {
    color: #e15613;
    background-image: url('../images/common/arrRH.svg');
}


/* 首页 合作伙伴*/
.i-partner .indTitle .text {
    color: #ebebeb;
}

.brand-container .brand-wrapper {
    display: flex;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 45px;
}

.brand-container .brand-wrapper .brand-slide {
    display: flex;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 16.66%;
    padding: 10px;
}


.brand-container .brand-wrapper .brand-slide {
    width: 10%;
    padding: 5px
}



.brand-container .brand-wrapper .brand-slide img {
    background: #fff;
    width: 100%;
    display: block;
}

/* 内页 banner */
.sonBan {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 480px;
}

@media (max-width:768px) {
    .sonBan {
        height: 300px;
    }
}


.sonBan img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 0;
}

@media (max-width:768px) {
    .sonBan img {
        height: 300px;
    }
}

.sonBan-cont {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sonBan-cont .contain {
    pointer-events: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.sonBan-cont .text {
    font-family: "MB";
    line-height: 1;
    margin-top: 12px;
    display: none;
}

.sonBan-cont .title {
    line-height: 1.1;
    font-weight: 700;
    margin-top: 10px;
}

.sonBan-cont .text,
.sonBan-cont .title {
    opacity: 0;
}

.sonBan-cont .text {
    animation: sonBanRun 1s ease both .4s;
    -webkit-animation: sonBanRun 1s ease both .4s;
}

.sonBan-cont .title {
    animation: sonBanRun 1s ease both .2s;
    -webkit-animation: sonBanRun 1s ease both .2s;
}

.sonBan-cont .desc {
    animation: sonBanRun 1s ease both .4s;
    -webkit-animation: sonBanRun 1s ease both .4s;
    letter-spacing: 0.04rem;
}

@keyframes sonBanRun {
    0% {
        opacity: 0;
        transform: translateX(200px);
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

.sonBan-mix {
    position: absolute;
    z-index: 4;
    left: 0;
    width: 100%;
    bottom: 0;
    opacity: 0;
    animation: sonBanRunMenu 0.8s ease both .1s;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-animation: sonBanRunMenu 0.8s ease both .1s;
}

@keyframes sonBanRunMenu {
    0% {
        opacity: 0;
        transform: translateY(110px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.sonBan-place {
    width: 100%;
    color: #fff;
    align-items: center;
    font-size: 0;
    margin-bottom: 16px;
    opacity: 0;
    visibility: hidden;
}

.sonBan-place a {
    font-size: 14px;
    line-height: 16px;
    margin-right: 20px;
    position: relative;
    transition: all .4s ease;
}

.sonBan-place a::after {
    content: "";
    position: absolute;
    pointer-events: none;
    top: 0;
    right: -20px;
    width: 20px;
    height: 16px;
    background: url('../images/common/arrRW.svg') no-repeat center/12px auto;
}

.sonBan-place a:last-child:after {
    display: none;
}

.sonBan-place.color {
    color: #888;
}

.sonBan-place.color a::after {
    background-image: url('../images/common/arrR.svg');
    background-size: 16px auto;
}

.sonBan-place a:hover {
    color: #e15613;
}



@media (max-width:576px) {
    .sonBan {
        height: 240px;
    }

    .sonBan img {
        height: 240px;
    }

    .sonBan .text {
        margin: 0;
        display: none;
    }

    .sonBan .title {
        margin: 0;
    }

    .sonBan .more {
        margin: 0;
    }

    .sonBan-cont .desc {
        letter-spacing: 0;
        font-size: 0.32rem;
        margin-top: 0;
    }

    .sonBan .breadcrumb {
        padding: 0;
        margin: 0;
    }
}


/*---------------------------------------------------------*/

.sonBan-menu {
    width: 100%;
    justify-content: space-between;
}

.sonBan-menu a {
    display: flex;
    flex: 1;
    height: 70px;
    line-height: 1;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    transition: all .4s ease;
    position: relative;
}

@media (max-width:768px) {
    .sonBan-menu a {
        height: 45px;
    }
}

@media (max-width:574px) {
    .sonBan-menu a {
        font-size: 0.32rem;
    }
}


.sonBan-menu a::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: #0d68b7;
    opacity: 0;
    transition: all 0.3s;
}

.sonBan-menu a::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    width: 1px;
    background-color: #fff;
    opacity: 0.25;
}

.sonBan-menu a:last-of-type:after {
    display: none;
}

.sonBan-menu.a1 a,
.sonBan-menu.a2 a {
    width: calc(50% - 2px);
}

.sonBan-menu.a3 a {
    width: calc(33.3333% - 2px);
}

.sonBan-menu.a4 a {
    width: calc(25% - 2px);
}

.sonBan-menu a:hover,
.sonBan-menu a.active {
    background: #e15613;
}

/* 全球创新 */
.inn_con {
    background-color: #F6F9FF;
    padding-bottom: 0.5vw;
    position: relative;
    z-index: 2;
}

.inn_con .inn1{
    padding: 2.34vw 0 2.34vw 0;
}

@media (max-width: 768px) {
    .inn_con .inn1{
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }
}



.inn_con .inn1 .con {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .inn_con .inn1 .con {
        flex-direction: column;
        padding-left: 15px;
        padding-right: 15px;
    }
}


.inn_con .inn1 .pic {
    width: 54.4vw;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .inn_con .inn1 .pic {
        width: 100%;
    }
}

.inn_con .inn1 .pic img {
    max-width: 100%;
    transition: all 1.5s
}

.inn_con .inn1 .pic img:hover {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
}


.inn_con .inn1 .pic .play-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    display: flex;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.inn_con .inn1 .pic .play-btn i {
    font-size: 0.3rem;
    color: #ffffff;
    background: rgba(225, 86, 19, 0.90);
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    padding-left: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;

    -webkit-animation: video-pulse-presentation 2s linear infinite;
    animation: video-pulse-presentation 2s linear infinite;

}


.inn_con .inn1 .pic .play-btn i:hover {
    background-color: #FFF;
    color: #F57009
}

@-webkit-keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 70%), 0 0 0 0 rgb(245 112 9 / 70%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 70%), 0 0 0 0 rgb(245 112 9 / 70%)
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0), 0 0 0 0 rgb(245 112 9 / 70%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0), 0 0 0 0 rgb(245 112 9 / 70%)
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0), 0 0 0 30px rgb(245 112 9 / 0);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0), 0 0 0 30px rgb(245 112 9 / 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0), 0 0 0 30px rgb(245 112 9 / 0);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0), 0 0 0 30px rgb(245 112 9 / 0)
    }
}

@keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 70%), 0 0 0 0 rgb(245 112 9 / 70%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 70%), 0 0 0 0 rgb(245 112 9 / 70%)
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0), 0 0 0 0 rgb(245 112 9 / 70%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0), 0 0 0 0 rgb(245 112 9 / 70%)
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0), 0 0 0 30px rgb(245 112 9 / 0);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0), 0 0 0 30px rgb(245 112 9 / 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0), 0 0 0 30px rgb(245 112 9 / 0);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0), 0 0 0 30px rgb(245 112 9 / 0)
    }
}





.inn_con .inn1 .con>.txt {
    width: 42.7vw;
    padding-right: 7vw;
    margin-top: 9.375vw;
}

@media (max-width: 768px) {
    .inn_con .inn1 .con>.txt {
        width: 100%;
        margin-top: 0.3rem;
    }
}


.inn_con .inn1 .con>.txt .cn {
    line-height: 66px;
    font-size: 50px;
    color: #000000;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .inn_con .inn1 .con>.txt .cn {
        font-size: 0.4rem;
        line-height: 1.32;
    }
}



.inn_con .inn1 .con>.txt .en {
    line-height: 26px;
    font-size: 20px;
    color: #444444;
    text-transform: uppercase;
    margin-bottom: 1.77vw;
}

@media (max-width: 768px) {
    .inn_con .inn1 .con>.txt .en {
        line-height: 1;
        font-size: 0.20rem;
    }
}

.inn_con .inn1 .con>.txt .p {
    line-height: 34px;
    font-size: 16px;
    color: #0A0600;
    height: 144px;
    padding-right: 8px;
    overflow: auto;
}

@media (max-width: 768px) {
    .inn_con .inn1 .con>.txt .p {
        font-size: 0.26rem;
        line-height: 1.75;
        padding-right: 0;
        height: auto;
    }
}

.inn_con .inn1 .con>.txt .p::-webkit-scrollbar {
    width: 2px;
    height: 5px;
}

.inn_con .inn1 .con>.txt .p::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.inn_con .inn1 .con>.txt .p::-webkit-scrollbar-thumb {
    background: #e15613;
}

.inn_con .inn1 .boxs {
    position: absolute;
    bottom: 4.2vw;
    background-color: #ffffff;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    border: 1px solid #F1F1F1;
    z-index: 10;
}

.inn_con .inn1 .boxs>div {
    display: flex;
    width: 100%;
}

.inn_con .inn1 .box {
    width: 33.33%;
    display: flex;
    align-items: center;
    padding: 2.2vw;
    border-right: 1px solid #F1F1F1;
}

.inn_con .inn1 .boxs .box:last-child {
    border-right: none;
}

.inn_con .inn1 .box .icon {
    width: 6.45vw;
    height: 6.45vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ECECFF;
    margin-right: 2.38vw;
}

.inn_con .inn1 .box .icon i {
    font-size: 60px;
}

.inn_con .inn1 .box .txt .h {
    color: #000000;
    font-size: 40px;
    line-height: 40px;
    position: relative;
    display: table;
    padding-right: 18px;
    margin-bottom: 0.73vw;

}

.inn_con .inn1 .box .txt .h .add {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    line-height: 14px;
    color: #e15613;
}

.inn_con .inn1 .box .txt .p {
    line-height: 30px;
    font-size: 20px;
    color: #000000;
    margin-bottom: 2vw;
}

.inn_con .inn1 .box .txt .solid {
    width: 18px;
    height: 3px;
    background-color: #e15613;
}

.inn_con .inn2 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6.25vw;
}

.inn_con .inn2 .box {
    width: 50%;
    padding: 3vw 5.73vw 1vw 3.85vw;
    border: 1px solid #EEEEEE;
    background-color: #fff;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.inn_con .inn2 .box .bj {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: no-repeat center;
    background-size: cover;
    z-index: -1;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    transform: scale(1.05);
}

.inn_con .inn2 .box:hover .bj {
    opacity: 1;
    transform: scale(1);
    border-radius: 0;
    top: 0;
}

.inn_con .inn2 .box .icon {
    width: 2.39vw;
    height: 2.39vw;
    position: relative;
    margin-bottom: 0.9375vw;
}

.inn_con .inn2 .box .icon img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.inn_con .inn2 .box .icon img.img2 {
    display: none;
}

.inn_con .inn2 .box:hover .icon img.img2 {
    display: block;
}

.inn_con .inn2 .box:hover .icon img.img1 {
    display: none;
}

.inn_con .inn2 .box .h {
    font-size: 22px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 0.73vw;
    transition: all 0.5s;
}

.inn_con .inn2 .box:hover .h {
    color: #fff;
}

.inn_con .inn2 .box .p {
    line-height: 26px;
    font-size: 16px;
    color: #4D4D4D;
    height: 130px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.5s;
}

.inn_con .inn2 .box:hover .p {
    color: #fff;
}


/* 联系我们 */
.contact-bottom {
    position: relative;
    overflow: hidden;
}

.contact-bottom .left {
    width: 50%;
}

@media (max-width:768px) {
    .contact-bottom .left {
        width: 100%;
    }
}

@media (max-width:576px) {
    .contact-bottom .left {
        width: 100%;
    }
}

@media (max-width:540px) {
    .contact-bottom .left {
        width: 100%;
    }
}


.contact-bottom .left .map {
    overflow: hidden;
    position: relative;
}

.contact-bottom .left .map img {
    display: block;
}

.contact-bottom .left .map iframe {
    border: none;
    margin: 0;
    padding: 0;
    margin-top: -50px;
}

.contact-bottom .right {
    width: 50%;
    position: absolute;
    height: 100%;
    padding-left: 30px;
    right: 0%;
    top: 0;
}

@media (max-width:768px) {
    .contact-bottom .right {
        position: inherit;
        width: 100%;
    }
}

@media (max-width:576px) {
    .contact-bottom .right {]
        position: inherit;
        width:100%;
    }
}

@media (max-width:540px) {
    .contact-bottom .right {
        position: inherit;
        width: 100%;
    }
}


.contact-bottom .right .name {
    border-bottom: 2px solid rgba(0, 0, 0, 0.4);
    padding-bottom: 15px;
}

.contact-bottom .right .name h4 {
    font-size: 20px;
    color: #e15613;
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
}

.contact-bottom .right .name h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
}

.contact-bottom .right .content-way {}

.contact-bottom .right .content-way .item {
    border-bottom: 1px solid #dcdcde;
    overflow: hidden;
    padding: 15px 0;
}

.contact-bottom .right .content-way .item.item2 li {
    float: left;
    width: 45%;
    margin-right: 5%;
}

@media (max-width:576px) {
    .contact-bottom .right .content-way .item.item2 li {
        width: 100%;
        padding: 0.3rem 0;
        border-bottom: 1px solid #dcdcde;
    }
}



.contact-bottom .right .content-way .item.item2 li::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #dedfe4;
    position: absolute;
    right: 10%;
    top: 0;
}

@media (max-width:576px) {
    .contact-bottom .right .content-way .item.item2 li::after {
        display: none;
    }
}


.contact-bottom .right .content-way .item.item2 li:last-child::after {
    display: none;
}

.contact-bottom .right .content-way .item.item2 li:last-child {
    width: 45%;
    margin-right: 0;
}

@media (max-width:576px) {
    .contact-bottom .right .content-way .item.item2 li:last-child {
        width: 100%;
        border: none;
        padding-bottom: 0;
    }
}


.contact-bottom .right .content-way .item.item2 li:first-child {
    width: 50%;
}


@media (max-width:576px) {
    .contact-bottom .right .content-way .item.item2 li:first-child {
        width: 100%;
        padding: 0.3rem 0;
        padding-top: 0;
        border-bottom: 1px solid #dcdcde;
    }
}




.contact-bottom .right .content-way li {
    list-style: none;
    position: relative;
}

.contact-bottom .right .content-way li i {
    width: 38px;
    height: 38px;
    border: 2px solid #1a1a1a;
    border-radius: 100%;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.contact-bottom .right .content-way li i {
    font-size: 18px;
    line-height: 34px;
    width: 38px;
    text-align: center;
}

.contact-bottom .right .content-way li span {
    display: inline-block;
    vertical-align: middle;
}

.contact-bottom .right .content-way li h6 {
    font-size: 16px;
    color: #999999;
    font-weight: normal;
    margin: 0;
}

@media (max-width:576px) {

    .contact-bottom .right .content-way li h6 {
        font-size: 0.24rem;
    }

}

.contact-bottom .right .content-way li h5 {
    font-size: 16px;
    color: #1a1a1a;
    margin: 5px 0 0 0;
}

@media (max-width:576px) {
    .contact-bottom .right .content-way li h5 {
        margin: 0;
        font-size: 0.34rem;
    }
}

.content-ewm {
    font-size: 16px;
    line-height: 28px;
    color: #999;
    padding-top: 30px;
}

@media (max-width:576px) {
    .content-ewm {
        padding-top: 0.3rem;
    }
}

.content-ewm .ewmleft {
    float: left;
    width: 25%;
    padding: 0.15rem;
    text-align: center;
}


@media (max-width:576px) {
    .content-ewm .ewmleft {
        width: 40%;
        margin-bottom: 0.15rem;
    }
}

.content-ewm .ewmleft img {
    display: inline-block;
    width: 100%;
    object-fit:contain;

}

@media (max-width:576px) {
    .content-ewm .ewmleft img {
        width: 100%;
        height: auto;
    }
}



.other-email {
    float: left;
    padding-left: 5%;
    font-size: 13px;
    line-height: 23px;
    color: #666;
}

@media (max-width:540px) {
    .contact-bottom .left {
        width: 100%;

        margin-bottom: 15px;

    }

    .contact-bottom .left #bdmap {
        height: 320px !important;
    }

    .contact-bottom .right {
        position: initial;
        width: 100%;
        padding: 15px;

    }

    .contact-bottom .right .name {
        border-bottom: 2px solid #000;
        padding-bottom: 15px;
    }

    .contact-bottom .right .name h4 {
        font-size: 0.30rem;
    }

    .contact-bottom .right .name h2 {
        font-size: 0.38rem;
    }

    .contact-bottom .right .content-way .item {
        padding: 0.30rem 0;
    }

    .contact-bottom .right .content-way li {
        display: flex;
    }

    .contact-bottom .right .content-way li i {
        flex-shrink: 0;
        min-width: 38px;
        width: 38px;
        height: 38px;
        line-height: 35px;
        display: block;
    }

    .contact-bottom .right .content-way li span {
        display: block;
    }



    .contact-bottom .right .content-way .item.item2 li:first-child {
        margin-right: 0;
    }

}


/* 销售网络 */
/* -- */
.relbg {
    width: 100%;
}

.relbg-mix {
    width: 100%;
    margin-top: 40px;
    position: relative;
}

.relbg-mix::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.relbg-mix::-webkit-scrollbar-thumb {
    background: #e15613;
}

.relbg-mix::-webkit-scrollbar-track {
    background: #fff;
}

.relbg-mix {
    scrollbar-color: #e15613 #fff;
    scrollbar-width: thin;
}

.relbg-mix {
    scrollbar-face-color: #e15613;
    scrollbar-shadow-color: #e15613;
    scrollbar-arrow-color: #000;
    scrollbar-track-color: #fff;
}

.relbg-mix table {
    width: 100%;
    border: 2px solid #fff;
    border-width: 0px 0px 0px 0px;
}

.relbg-mix td,
.relbg-mix th {
    border: solid #fff;
    border-width: 0px 2px 2px 0px;
    text-align: center;
}

.relbg-mix th {
    font-size: 18px;
    color: #fff;
    padding: 18px 12px;
    background: #e15613;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.relbg-mix td {
    padding: 12px 12px;
    font-size: 16px;
    color: #7a8290;
    background: #f3f6fa;
}

/* .relbg-mix thead{position: sticky;width: 100%;top: 0;left: 0;background: #fff;} */
.relbg-mix tbody tr:first-child td {
    background: #fbf0ea;
    font-size: 18px;
    color: #e15613;
    font-weight: 700;
    padding: 16px 12px;
}

.relbg-mix tbody tr:first-child td * {
    color: #070707 !important;
    font-weight: 700;
}

.relbg-mix tbody tr td h6 {
    color: #333;
    margin-bottom: 0;
    font-size: 18px;
    color: #666666;
}

.relbg-mix tbody tr td p {
    font-size: 17px;
    line-height: 22px;
    color: #666666;
}

.relbg-mix tbody tr.bg td {
    background: #fbf0ea;
}

.relbg-mix .relbg-address {
    display: flex;
    display: block;
    width: 100%;
    padding: 0 20px;
    text-align: left;
    flex-wrap: wrap;
    text-align: center;
}

.relbg-mix .relbg-address.color {
    color: #666666;
}

.relbg-mix .relbg-address i {
    font-style: normal;
    width: 96px;
    text-align: right;
}

.relbg-mix .relbg-address h5 {
    display: flex;
    color: #7a8290;
}

.relbg-mix .relbg-address span {
    width: calc(100% - 96px);
}

.relbg-mix th:last-child,
.relbg-mix td:last-child {
    max-width: 460px;
}

@media (max-width:768px) {
    .relbg-mix th {
        font-size: 14px;
        padding: 8px 10px;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .relbg-mix th {
        font-size: 14px;
        padding: 8px 10px;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .relbg-mix tbody tr:first-child td {
        font-size: 14px;
        padding: 8px 10px;
    }
}

@media (max-width:540px) {
    .relbg-mix {
        overflow: auto;
        margin-top: 15px;
    }

    .relbg-mix table {
        width: 960px;
    }

    .relbg-mix th {
        font-size: 14px;
        padding: 8px 10px;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .relbg-mix td {
        font-size: 14px;
    }

    .relbg-mix tbody tr td h6 {
        font-size: 14px;
        margin-bottom: 0;
    }

    .relbg-mix th:last-child,
    .relbg-mix td:last-child {
        max-width: none;
    }


    .relbg-mix .relbg-address {
        display: block;
        width: 100%;
        padding: 0 15px;
        text-align: left;
        flex-wrap: wrap;
        text-align: center;
    }

}

.relbg-mix .table.mb-table{
    width: 100%;
}

.relbg-mix .table.mb-table tbody{
    width: 100%;
}



.relbg-mix .table.mb-table .td{
    text-align: left;
    background: #f3f6fa;
    padding: 8px 10px;
}

.relbg-mix .table.mb-table .tr.bg .td {
    background: #fbf0ea;
}

.relbg-mix .table.mb-table h6{
    font-weight: bold;
    font-size: 14px;
    padding: 5px 0;
}

.relbg-mix .table.mb-table .relbg-address{
    padding: 0;
    text-align: left;
    font-size: 0.25rem;
}

/* 在线留言 */
.reltab {
    width: 100%;
    padding: 120px 0;
    background: #f7f7f7;
}

.reltab ul {
    margin-left: -2%;
}

.reltab li {
    width: 31.3333%;
    float: left;
    margin-left: 2%;
    float: left;
    background: #fff;
    height: 224px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all .4s ease;
}

.reltab-tag {
    position: absolute;
    z-index: 1;
    font-size: 14px;
    color: #b8b8b8;
    top: 22px;
    right: 28px;
    font-style: normal;
}

.reltab-item {
    width: 100%;
    padding: 0 100px 0 50px;
    font-size: 0;
}

.reltab-img,
.reltab-wd {
    display: block;
}

.reltab-img {
    float: left;
    width: 94px;
    margin-top: 10px;
}

.reltab-img img {
    max-width: 100%;
}

.reltab-wd {
    width: calc(100% - 94px);
    float: right;
}

.reltab-wd span {
    font-size: 16px;
    color: #999;
    display: block;
    line-height: 26px;
    margin-bottom: 8px;
}

.reltab-wd p {
    font-size: 16px;
    color: #333;
    line-height: 24px;
}

.reltab li:hover {
    box-shadow: 0 4px 10px 2px #e5e5e5;
}

.reltab li:last-child .reltab-item {
    padding-right: 0;
}

.relyx {
    width: 100%;
    padding: 148px 0 88px;
}

.relyx-title {
    width: 100%;
}

.relyx-title h6,
.relyx-title h1 {
    font-size: 36px;
    color: #333;
}

.relyx-list {
    width: 100%;
}

.relyx-list ul {
    margin-left: -2%;
}

.relyx-list li {
    width: 23%;
    margin-left: 2%;
    float: left;
    margin-top: 24px;
}

.relyx-img {
    width: 100%;
    overflow: hidden;
}

.relyx-img img {
    width: 100%;
    object-fit: cover;
    transition: all .8s ease;
}

.relyx-wd {
    width: 100%;
    padding: 30px 25px 0 0;
    position: relative;
    min-height: 294px;
}

.relyx-wd h6,
.relyx-wd h1 {
    font-size: 22px;
    color: #333;
    padding-bottom: 10px;
}

.relyx-wd p {
    font-size: 15px;
    color: #999;
    line-height: 26px;
    position: relative;
    padding-left: 26px;
    margin-top: 10px;
    min-height: 52px;
}

.relyx-wd p:nth-of-type(1) {
    background: url('../images/gather/relD1.jpg') no-repeat left top 2px;
}

.relyx-wd p:nth-of-type(2) {
    background: url('../images/gather/relD2.jpg') no-repeat left top 2px;
}

.relyx-check {
    display: inline-block;
    font-size: 15px;
    color: #e15613;
    font-style: normal;
    line-height: 26px;
    margin-top: 20px;
    position: relative;
    user-select: none;
    cursor: pointer;
}

.relyx-check:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #e15613;
}

.relyx-list li:hover .relyx-img img {
    transform: scale(1.04);
}

.relyx-wd:after {
    content: "";
    position: absolute;
    width: 28px;
    height: 13px;
    background: url('../images/gather/relArr.png') no-repeat;
    bottom: 0;
    left: 0;
    opacity: 0;
}

.relyx-item {
    width: 100%;
}

.relyx-info {
    width: 100%;
    background: #f5f5f5;
}

.relyx-info ul {
    display: flex;
    flex-wrap: wrap;
}

.relyx-info li {
    width: 20%;
    float: left;
    padding: 50px 0;
}

.relyx-info li h6,
.relyx-info li h1 {
    font-size: 22px;
    color: #333;
    margin-bottom: 32px;
}

.relyx-info li p {
    font-size: 14px;
    color: #888;
    line-height: 24px;
}

.relyx-infoitem {
    width: 100%;
    display: none;
}

.relyx-list li.ontrue .relyx-wd:after {
    opacity: 1;
}

.relyx-infoitem.ontrue {
    display: block;
}

.relyx-content {
    width: 100%;
    margin-top: 44px;
}

/* 在线留言 */
.relly {
    width: 100%;
    background: #f6f6f6;
    overflow: hidden;
}

.relly .indTitle .text {
    color: #333;
    opacity: 0.05;
}

.relyx-title p {
    font-size: 15px;
    color: #999;
    line-height: 26px;
    margin-top: 0;
}

.relly-form {
    width: 100%;
    margin-top: 40px;
}

.relly-formipt {
    width: 100%;
    margin-bottom: 20px;
}

.relly-formipt input {
    width: 100%;
    height: 60px;
    background: #fff;
    padding: 0 32px;
}

.relly-form input,
.relly-form textarea {
    font-size: 15px;
    color: #888;
}

.relly-form input:-moz-placeholder,
.relly-form textarea:-moz-placeholder {
    color: #888;
    font-size: 15px;
}

.relly-form input::-moz-placeholder,
.relly-form textarea::-moz-placeholder {
    color: #888;
    font-size: 15px;
}

.relly-form input:-ms-input-placeholder,
.relly-form textarea:-ms-input-placeholder {
    color: #888;
    font-size: 15px;
}

.relly-form input::-webkit-input-placeholder,
.relly-form textarea::-webkit-input-placeholder {
    color: #888;
    font-size: 15px;
}

.relly-formipt input:first-child {
    float: left;
}

.relly-formipt input:last-child {
    float: right;
}

.relly-form textarea {
    width: 100%;
    display: block;
    background: #fff;
    border: none;
    padding: 24px 32px;
    height: 164px;
}

.relly-formyzmbtn {
    width: 100%;
    overflow: hidden;
}

.relly-formyzm {
    float: left;
}

.relly-formyzm input {
    width: 400px;
    height: 60px;
    background: #fff;
    padding: 0 32px;
    display: block;
    float: left;
}

@media (max-width:768px) {
    .relly-formyzm input {
        width: 50%;
    }
}

@media (max-width:576px) {
    .relly-formyzm input {
        width: 100%;
    }
}




.relly-formyzm span.captcha {
    display: block;
    float: left;
    margin-left: 20px;
    height: 60px;
    width: 150px;
    cursor: pointer;
}

.relly-formyzm span.captcha img {
    width: 100%;
    height: 100%;
}

.relly-formbtn {
    width: 200px;
    height: 60px;
    display: block;
    background: #e15613;
    font-size: 16px;
    color: #fff;
    text-align: center;
    float: right;
    cursor: pointer;
}

.relyx-close {
    display: none;
}

.relly.rellyBg {
    background: #eceff4;
}

@media (max-width:540px) {
    .relyx-title p {
        margin: 0;
    }

    .relly-form input,
    .relly-form textarea {
        font-size: 14px;
    }

    .relly-formipt input {
        height: 44px;
        line-height: 44px;
    }

    .relly-form {
        margin-top: 15px;
    }

    .relly-formipt {
        margin-bottom: 0;
    }

    .relly-formipt input {
        margin-bottom: 15px;
    }

    .relly-formipt textarea {
        margin-bottom: 15px;
        float: left;
    }

    .relly-formyzm {
        position: relative;
        margin-bottom: 15px;
        float: none;
        clear: both;
    }

    .relly-formyzm .captcha {
        position: absolute;
        right: 0;
    }

    .relly-formbtn {
        width: 100%;
        margin: 0 auto;
        height: 44px;
        line-height: 44px;
    }
}




/* 新闻中心 */
.news {
    width: 100%;
}

.news-list {
    width: 100%;
}

.news-list ul {
    margin-left: -2%;
}

@media (max-width:576px) {
    .news-list ul {
        margin-left: 0;
    }
}

.news-list li {
    width: 31.3333%;
    float: left;
    margin-left: 2%;
    position: relative;
    margin-bottom: 30px;
}

@media (max-width:576px) {
    .news-list li {
        width: 100%;
        margin: 0;
        margin-bottom: 0.6rem;
    }
}



.news-list li a {
    display: block;
    width: 100%;
    background-color: #ffffff;
}

.news-img {
    width: 100%;
    overflow: hidden;
    height: 275px;
    /* border: 1px solid rgba(0, 0, 0, .10); */
}

@media (max-width:576px) {
    .news-img {
        height: 4.6rem;
    }
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6S ease-in-out;
}

.news-wd {
    width: 100%;
    border: 1px solid #eee;
    border-top: none;
    padding: 25px 30px 30px;
}

@media (max-width:576px) {
    .news-wd {
        padding: 0.3rem 0.4rem;
    }
}


.news-wd span {
    font-size: 14px;
    color: #888;
    display: block;
    font-family: 'GothamBook';
}

.news-wd h6,
.news-wd h1 {
    font-size: 22px;
    color: #333;
    line-height: 34px;
    margin: 24px 0 16px;
    transition: all .4s ease;
    height: 68px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (max-width:576px) {

    .news-wd h6,
    .news-wd h1 {
        font-size: 0.36rem;
        line-height: 0.52rem;
        margin: 0.32rem 0 0.24rem;
        height: 1.04rem;
    }
}

.news-wd p {
    font-size: 14px;
    color: #999;
    line-height: 28px;
    height: 56px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-list li a:hover .news-img img {
    transform: scale(1.04);
}

.news-list li a:hover .news-wd h6 {
    color: #e15613;
}

.news-list li a:hover .news-wd h1 {
    color: #e15613;
}

.news .fullpage {
    margin-top: 100px;
}

/* 新闻详情 */
.newsxq {
    width: 100%;
    padding-top: 100px;
}

.newsxq-cont {
    width: 73.8%;
    padding-right: 54px;
    float: left;
    border-right: 1px solid #eee;
}

.newsxq-title {
    width: 100%;
}

.newsxq-title h6,
.newsxq-title h1 {
    font-size: 32px;
    color: #333;
    line-height: 40px;
}

.newsxq-title p {
    font-size: 0;
    width: 100%;
    margin-top: 10px;
}

.newsxq-title p span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 14px;
    color: #888;
    line-height: 20px;
    padding-left: 24px;
    margin-right: 36px;
    font-family: "GothamBook";
}

.newsxq-title p span:first-child {
    background: url('../images/gather/newsxqIc1.png') no-repeat left center;
}

.newsxq-title p span:last-child {
    background: url('../images/gather/newsxqIc2.png') no-repeat left center;
    margin-right: 0;
}

.newsxq-desc {
    width: 100%;
    padding: 50px 0 44px;
    font-size: 16px;
    color: #888;
    line-height: 32px;
}

.newsxq-desc p {
    font-size: 16px;
    color: #888;
    line-height: 32px;
}

.newsxq-desc a {
    color: #e15613;
}

.newsxq-desc img,
.newsxq-desc video,
.newsxq-desc canvas {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    height: auto !important;
}

.newsxq-desc iframe {
    max-width: 100%;
}

.newsxq-tags {
    width: 100%;
    position: relative;
    padding-left: 78px;
}

.newsxq-tags label,
.newsxq-tags span {
    display: inline-block;
    vertical-align: middle;
    height: 35px;
    line-height: 35px;
    color: #888;
}

.newsxq-tags label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
}

.newsxq-tags span {
    font-size: 14px;
    border: 1px solid #e5e5e5;
    padding: 0 20px;
    margin: 0 8px;
    border-radius: 30px;
}

.newsxq-share {
    width: 100%;
    position: relative;
    padding-left: 78px;
    margin-top: 32px;
}

.newsxq-share label {
    display: inline-block;
    vertical-align: middle;
    height: 35px;
    line-height: 35px;
    color: #888;
}

.newsxq-share label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
}

.newsxq-share .bdsharebuttonbox {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.newsxq-share .bdsharebuttonbox a {
    width: 35px;
    height: 35px;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
    margin: 0 8px;
    padding: 0;
    background-position: center;
    background-color: #afafaf;
    background-repeat: no-repeat;
}

.newsxq-share .bdsharebuttonbox a:nth-child(1) {
    background-image: url('../images/gather/newsxqFx1.png');
}

.newsxq-share .bdsharebuttonbox a:nth-child(2) {
    background-image: url('../images/gather/newsxqFx2.png');
}

.newsxq-share .bdsharebuttonbox a:nth-child(3) {
    background-image: url('../images/gather/newsxqFx3.png');
}



/* .adshou{cursor:pointer !important};*/
.layui-btn .conut-next {
    text-align: center;
    font-size: 20px;
    color: #3E3E3E;
    padding: 5px 0;
    transition: all 0.5s;
}

.layui-btn:hover .conut-next {
    font-size: 18px;
    color: red;
}

.close-back {
    background: url('../images/map/close_back.png') no-repeat;
    display: none;
    transition: all 0.5s;
    height: 70px;
    width: 85px;
    color: #fff;
    left: 65px;
    position: absolute;
    top: 300px;
    cursor: pointer;
}

.close-back img {
    margin: 28px auto 0;
    width: 30px;
    display: block;
    transition: all 0.5s;
}

.close-back:hover {
    left: 55px;
}

.close-back:hover img {
    width: 22px;
    margin-top: 32px;
}

.imgSize {
    height: 170px;
    width: 260px;
}

/* 门店列表 */
.store_list {
    padding: 0.2rem;
    max-height: 680px;
}

.store_list dl {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px dashed #ebebeb;
    padding: 0.16rem 0;
}

.store_list dd {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5rem;
}

/* 办事处 */
.global .box .boxLeft {
    box-sizing: border-box;
    padding: 0.48rem 0.5rem;
    border: 1px solid #eee;
    width: 42%;
}

.global .box .boxLeft .content1 {
    font-size: 0.18rem;
    font-weight: bold;
    line-height: 0.275rem;
}

.global .box .boxLeft .content1 span {
    font-size: 0.48rem;
    color: #e15613;
}

.global .box .boxLeft .content2 {
    margin-top: 0.16rem;
    font-size: 0.16rem;
    color: #666;
}

.global .box .boxCenter {
    box-sizing: border-box;
    padding: 0.48rem 0.5rem;
    border: 1px solid #eee;
    width: 28%;
}

.global .box .boxCenter .content1 {
    font-size: 0.18rem;
    font-weight: bold;
}

.global .box .boxCenter .content1 span {
    font-size: 0.48rem;
    color: #e15613;
}

.global .box .boxCenter .content2 {
    margin-top: 0.16rem;
    font-size: 0.16rem;
    color: #666;
}

.global .box .boxRight {
    box-sizing: border-box;
    width: 30%;
    padding: 0.48rem 0.5rem;
    border: 1px solid #eee;
}

.global .box .boxRight .content1 {
    font-size: 0.48rem;
    color: #e15613;
    font-weight: bold;
}

.global .box .boxRight .content2 {
    font-size: 0.16rem;
    color: #666;
    margin-top: 0.16rem;
}

/* 服务支持 */


.serviceSupport .indTitle .text {
    color: rgb(5, 5, 5);
    opacity: 0.05;
}


.serviceSupport-container {
    width: 100%;
    margin-top: 45px;
}

@media (max-width:768px) {
    .serviceSupport-container {
        margin-top: 0.6rem;
    }
}

.serviceSupport-container .item {
    width: 50%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 0.4rem 0.60rem;
    position: relative;
    background: #fff;
}

@media (max-width:768px) {
    .serviceSupport-container .item {
        width: 100%;
        margin-bottom: 0.3rem;
        padding: 0.3rem;
    }
}


.serviceSupport-container .item a {
    display: block;
}

.serviceSupport-container .item a .main {
    z-index: 2;
    position: relative;
}

.serviceSupport-container .item a .main .left {
    width: 0.6rem;
}

.serviceSupport-container .item a .main .left i {
    width: 100%;
    margin-top: 0.5rem;
    transition: 0.4s;
    font-size: 0.6rem;
}

.serviceSupport-container .item a .main .right {
    width: calc(100% - 0.7rem);
    box-sizing: border-box;
    padding-left: 0.4rem;
}

.serviceSupport-container .item a .main .right .content1 {
    font-size: 0.24rem;
    color: #000;
    transition: 0.4s;
}



.serviceSupport-container .item a .main .right .content2 {
    margin-top: 0.16rem;
    font-size: 0.16rem;
    color: #666;
    line-height: 1.75;
    letter-spacing: 1px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.serviceSupport-container .item a .main .right .content3 {
    margin-top: 0.3rem;
    font-size: 0.16rem;
    font-family: 'gilroy_bold';
    color: #e15613;
    transition: 0.4s;
}

.serviceSupport-container .item a .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.4s;
}

.serviceSupport-container .item a .img img {
    width: 100%;
    height: 100%;
}







@media screen and (min-width: 1280px) {

    .serviceSupport-container .item:hover a .main .left i {
        color: #fff;
    }

    .serviceSupport-container .item:hover a .main .right .content1 {
        color: #fff;
    }

    .serviceSupport-container .item:hover a .main .right .content2 {
        color: #fff;
    }

    .serviceSupport-container .item:hover a .main .right .content3 {
        color: #fff;
    }

    .serviceSupport-container .item:hover a .img {
        opacity: 1;
    }

}


/* 产品与服务 */
.indexPart1 {
    padding: 60px 0;

}

.PS .row {
    display: flex;
    /* equal height of the children */
    display: flex;
    flex-wrap: wrap;
}

.PS {
    margin-top: 35px;
}

.PS .col-md-4 {
    width: 33.33%;
    padding-left: 0;
    padding-right: 0;
    flex: 0 0 auto;
    width: 33.33333333%;
    background: #e15613;
    color: #ffffff;
    text-align: center;
    padding: 3%;
    min-height: 340px;
}

.PS .col-md-4 h3 {
    font-size: 0.30rem;
    padding: 0 0 0.15rem;
}

.PS .col-md-4 p {
    font-size: 0.18rem;
}

.soluNav {
    padding-top: 45px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.soluNav li {
    position: relative;
    float: left;
    cursor: pointer;
    width: 11.11%;
    padding-top: 32px;
    height: 126px;
    text-align: center;
    font-size: 0.16rem;
}

.soluNav li:after {
    content: '';
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0.08rem;
    width: 0.36rem;
    margin-left: -0.18rem;
    height: 0.24rem;
    background: url(../images/nimg21_1.png) center no-repeat;
    background-size: 0.36rem;
}

.soluNav li p {
    padding-top: 0;
    font-size: 16px;
    line-height: 16px;
    color: #3f4150;
}

.soluNav li .ico {
    margin: 0 auto;
    width: 54px;
    height: 54px;
    position: relative;
}

.soluNav li .ico .img1 {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.soluNav li .ico .iconfont {
    font-size: 32px;
    color: #c4c9d3;
}

.soluNav li.on,
.soluNav li a:hover {
    box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.08);
}

.soluNav li.on .ico img,
.soluNav li a:hover .ico img {
    opacity: 0;
}

.soluNav li.on .ico .img1,
.soluNav li a:hover .ico .img1 {
    opacity: 1;
}

.soluNav li.on .iconfont,
.soluNav li.on p,
.soluNav li a:hover p {
    color: #e15613;
}

.soluNav .swiper-button-prev {
    display: none;
    width: 9px;
    left: 0;
    height: 14px;
    top: 50%;
    margin-top: -7px;
    background: url(../images/nimg9_left2.png) center no-repeat;
    z-index: 2;
}

.soluNav .swiper-button-next {
    display: none;
    width: 9px;
    right: 0;
    height: 14px;
    top: 50%;
    margin-top: -7px;
    background: url(../images/nimg9_right2.png) center no-repeat;
    z-index: 2;
}

.indexPart2 .list {
    display: none;
}

.indexPart2 .list:first-child {
    display: block;
}

.indexPart2 .mxfDiv {
    background: #f7f7fa;
    position: relative;
}

.indexPart2 .leftDiv {
    position: absolute;
    width: 7.68rem;
    left: 50%;
    top: 0;
    margin-left: -7.68rem;
    height: 6.0rem;
}

.indexPart2 .name1 {
    font-size: 0.0.48rem;
    line-height: 0.0.48rem;
    color: #3f4150;
    font-weight: bold;
    padding: 0.75rem 0 0.15rem;
}

.indexPart2 .name2 {
    font-family: mont;
    font-size: 0.24rem;
    line-height: 0.24rem;
    color: #b9c0ce;
    text-transform: uppercase;
}

.indexPart2 .content {
    color: #3f4150;
    font-size: 0.22rem;
    line-height: 0.36rem;
    padding: 0.48rem 0.6rem 0 0;
}

.indexPart2 .links {
    padding-top: 0.35rem;
}

.indexPart2 .links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.indexPart2 .links li {
    float: left;
    width: 50%;
    height: 0.48rem;
    line-height: 1;
}

.indexPart2 .links li a {
    position: relative;
    display: inline-block;
    font-size: 0.20rem;
    color: #4d5564;
    height: 0.48rem;
    line-height: 0.48rem;
    padding-right: 40px;
}

.indexPart2 .links li a:after {
    content: '';
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50%;
    width: 17px;
    height: 7px;
    margin-top: -4px;
    background: url(../images/nimg17_1.png) center no-repeat;
}

.indexPart2 .links li a:hover {
    color: #e15613;
}

.indexPart2 .links li a:hover:after {
    opacity: 1;
    right: 5px;
}

.indexPart2 .btnDiv {
    position: absolute;
    left: 0;
    bottom: 0.75rem;
}

.indexPart2 .btnDiv a {
    display: block;
    width: 1.28rem;
    height: 0.44rem;
    border: #b9c0ce solid 1px;
    line-height: 0.44rem;
    text-align: center;
    font-size: 14px;
    color: #8c94a3;
}

.indexPart2 .btnDiv a:hover {
    color: #fff;
    background: #e15613;
    border: #e15613 solid 1px;
}

.indexPart2 .rightDiv {
    width: 50%;
    position: relative;
    height: 6.0rem;
    background-size: cover;
    background-position: center;
}

.indexPart2 .rightDiv .bg img {
    width: 100%;
}

.indexPart2 .botDiv {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0.5rem 0.45rem;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3);
}

/* indexPart3 */
.indexPart3 {
    padding: 80px 0;
}

/* 行业解决方案 */
.pcList {
    display: block;
}

.navMain {
    width: 80%;
    margin: 0 auto;
    color: #fff;
    font-size: 16px;
    position: relative;
    z-index: 9;
}

.navMain .navList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.navList li {
    width: 18%;
    position: relative;
    margin-bottom: 3%;
    cursor: pointer;
    overflow: hidden;
}

.navList li a {
    color: #fff;
}

.navList li:nth-last-child(1),
.navList li:nth-last-child(2),
.navList li:nth-last-child(3),
.navList li:nth-last-child(4),
.navList li:nth-last-child(5) {
    margin-bottom: 0;
}

.navContent {
    position: absolute;
    top: 20px;
    left: 20px;
}

.rod {
    width: 15px;
    height: 4px;
    background: #fff;
    margin-top: 10px;
}

.navNum {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.navDetails {
    position: absolute;
    top: 0;
}

.navDetails li {
    position: relative;
    display: none;
}

.detailsImg {
    width: 100%;
}

.detailsContent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    flex-wrap: wrap;
}

.detailMain {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    height: 50%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-top: 10%;
}

.listIntroduce {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    bottom: -100%;
    text-align: center;
}

.navList li img {
    transform: scale(1);
    transition: all 0.6s;
}

.navList li .listIntroduce {
    transition: all 0.6s;

}

.navList li:hover .listIntroduce {
    bottom: 0;
}

.navList li:hover img {
    transform: scale(1.2);
}

.navList li:hover .navContent,
.navList li:hover .navNum {
    display: none;
}

.writeMain {
    width: 85%;
    top: 50%;
    left: 7.5%;
    position: absolute;
    transform: translateY(-50%);
    font-size: 18px;
}

.detailContent {
    font-size: 16px;
}

.listNum {
    width: 100%;
}

.listTitle {
    margin: 15px 0;
}


.listTitle span {
    width: 15px;
    height: 4px;
    background: #fff;
    margin: 0 auto;
    margin-top: 15px;
}

.content {
    position: relative;
    padding: 90px 0;
}

/* 汽车行业解决方案 */
.Phone-Box {
    display: none;
}

.plasticPart1 {
    padding-top: 90px;
    height: 700px;
    overflow: hidden;
    position: relative;
    background: url(../images/industrialPart5.jpg) center no-repeat;
    background-size: cover;
}

.plasticPart1 .txt {
    font-size: 24px;
    color: #8c94a3;
    line-height: 24px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 25px;
}

.plasticPart1 .wen {
    text-align: center;
    font-size: 0.36rem;
    line-height: 0.36rem;
    position: relative;
    height: 80px;
    color: #fff;
}

.plasticPart1 .wen:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #e15613;
    margin-left: -25px;
}

.plasticPart1 .list {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.plasticPart1 .list:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.plasticPart1 .list .wal {
    overflow: hidden;
}

.plasticPart1 .list li {
    height: 406px;
    text-align: center;
    position: relative;
}

.plasticPart1 .list li:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.plasticPart1 .list li:last-child:before {
    display: none;
}

.plasticPart1 .list li:after {
    content: '';
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 28, 34, 0.9);
}

.plasticPart1 .list li .ico {
    padding: 115px 0 45px;
    position: relative;
    z-index: 1;
}

.plasticPart1 .list li .name {
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.plasticPart1 .list li .msg {
    position: relative;
    z-index: 1;
    height: 0;
    overflow: hidden;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.14rem;
    line-height: 24px;
    color: #cecfd3;
    transition: all .5s;
}

.plasticPart1 .list li:hover:after {
    opacity: 1;
}

.plasticPart1 .list li:hover .ico {
    padding: 65px 0 40px;
}

.plasticPart1 .list li:hover .msg {
    height: 120px;
    padding-top: 0.15rem;
    overflow: hidden;
}

.plasticPart1 .swiper-pagination {
    display: none;
    position: relative;
    bottom: 0;
    padding-top: 0.6rem;
}

.plasticPart1 .swiper-pagination-bullet {
    position: relative;
    width: 0.2rem;
    height: 0.2rem;
    opacity: 1;
    box-sizing: border-box;
    background: #eee;
}

.plasticPart1 .swiper-pagination-bullet-active {
    background: #e15613;
}

.plasticPart1 .swiper-button-prev {
    left: 0;
    top: 50%;
    width: 56px;
    height: 56px;
    margin-top: -28px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.plasticPart1 .swiper-button-prev:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 14px;
    margin-left: -5px;
    margin-top: -7px;
    background: url(../images/nimg9_left.png) center no-repeat;
    opacity: 0.6
}

.plasticPart1 .swiper-button-next {
    right: 0;
    top: 50%;
    width: 56px;
    height: 56px;
    margin-top: -28px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.plasticPart1 .swiper-button-next:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 14px;
    margin-left: -5px;
    margin-top: -7px;
    background: url(../images/nimg9_right.png) center no-repeat;
    opacity: 0.6
}

.plasticPart1 .swiper-button-prev:hover,
.plasticPart1 .swiper-button-next:hover {
    background: #e15613;
}

.plasticPart1 .swiper-button-prev:hover:before,
.plasticPart1 .swiper-button-next:hover:before {
    opacity: 1;
}

.plasticPart2 .toptop {
    padding: 90px 0 70px;
}

.plasticPart2 .txt {
    font-size: 24px;
    color: #8c94a3;
    line-height: 24px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 25px;
}

.plasticPart2 .wen {
    text-align: center;
    font-size: 0.36rem;
    line-height: 0.36rem;
    position: relative;
    height: 80px;
    color: #191c22;
}

.plasticPart2 .wen:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #e15613;
    margin-left: -25px;
}

.hahaPic {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hahaPic .swiper-slide {
    overflow: hidden;
    position: relative;
}

.hahaPic .swiper-slide:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hahaPic li {
    float: left;
    width: 50%;
    position: relative;
    overflow: hidden;
}

.hahaPic .bg img {
    width: 100%;
}

.hahaPic .layer {
    position: absolute;
    left: 20%;
    top: 20%;
    padding-right: 23%;
    color: #fff;
    z-index: 2;
}

.hahaPic .name {
    font-size: 0.36rem;
    line-height: 0.36rem;
    font-weight: bold;
    padding-bottom: 0.35rem;
}

.hahaPic .content {
    padding: 0;
    font-size: 0.18rem;
    line-height: 0.36rem;
    height: 1.44rem;
    overflow: hidden;
    margin-bottom: 10px;
    width: 4.85rem;
}

.hahaPic .msgList li {
    float: none;
    width: auto;
}

.hahaPic .msgList li a {
    display: block;
    font-size: 0.16rem;
    height: 0.4rem;
    line-height: 0.4rem;
    color: #fff;
}

.hahaPic .msgList li a:hover {
    color: #e15613;
    background: url(../images/ico1on2.png) left center no-repeat;
}

.hahaPic .swiper-slide li:hover .bg img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.hahaPic .swiper-slide li:hover .layer {
    left: 18%;
}

.hahaPic .swiper-button-prev {
    left: 0;
    top: 50%;
    width: 56px;
    height: 56px;
    margin-top: -28px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.hahaPic .swiper-button-prev:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 14px;
    margin-left: -5px;
    margin-top: -7px;
    background: url(../images/nimg9_left.png) center no-repeat;
    opacity: 0.6
}

.hahaPic .swiper-button-next {
    right: 0;
    top: 50%;
    width: 56px;
    height: 56px;
    margin-top: -28px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.hahaPic .swiper-button-next:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 14px;
    margin-left: -5px;
    margin-top: -7px;
    background: url(../images/nimg9_right.png) center no-repeat;
    opacity: 0.6
}

.hahaPic .swiper-button-prev:hover,
.hahaPic .swiper-button-next:hover {
    background: #e15613;
}

.hahaPic .swiper-button-prev:hover:before,
.hahaPic .swiper-button-next:hover:before {
    opacity: 1;
}

.plasticPart3 {
    padding: 110px 0;
}

.plasticPart3 .numList li {
    float: left;
    width: 20%;
}

.plasticPart3 .numList li .num {
    font-size: 48px;
    line-height: 48px;
    color: #191c22;
    padding-bottom: 10px;
    font-family: bold;
    text-align: center;
}

.plasticPart3 .numList li p {
    font-size: 18px;
    color: #3f4150;
    text-align: center;
}

.plasticPart4 {
    padding-top: 90px;
    padding-bottom: 60px;
    background: url(../images/plasticPart4.jpg) center no-repeat;
    background-size: cover;
}

.plasticPart4 .txt {
    font-size: 24px;
    color: #8c94a3;
    line-height: 24px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 25px;
}

.plasticPart4 .wen {
    text-align: center;
    font-size: 0.36rem;
    line-height: 0.36rem;
    position: relative;
    height: 80px;
    color: #fff;
    margin-bottom: 60px;
}

.plasticPart4 .wen:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #e15613;
    margin-left: -25px;
}

.plasticPart4 .detail-box {
    height: 4.3rem;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.plasticPart4 .detail-box .mxfDiv {
    position: relative;
    padding: 0 1.3rem 0 6.55rem;
    height: 4.3rem;
}

.plasticPart4 .detail-box .imgDiv {
    position: absolute;
    left: 0;
    top: 0;
}

.plasticPart4 .detail-box .imgDiv img {
    width: 5.76rem;
}

.plasticPart4 .detail-box .conDiv {
    padding-top: 0.6rem;
}

.plasticPart4 .detail-box .logo {
    position: relative;
}

.plasticPart4 .detail-box .logo img {
    width: 2.0rem;
}

.plasticPart4 .detail-box .title {
    font-size: 26px;
    color: #000000;
    text-align: center;
}

.plasticPart4 .detail-box .content {
    padding: 15px 0;
    font-size: 0.18rem;
    line-height: 0.3rem;
    overflow: hidden;
    color: #191c22;
    margin-top: 10px;
    padding-left: 0.45rem;
    position: relative;
}

.plasticPart4 .detail-box .content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 24px;
    height: 18px;
    background: url(../images/nimg24_1.png) center no-repeat;
}

.plasticPart4 .detail-box .tab2 {
    padding-left: 0.45rem;
    padding-top: 0.3rem;
}

.plasticPart4 .detail-box .tab2 li {
    position: relative;
    float: left;
    margin-right: 40px;
    color: #8c94a3;
    font-size: 0.24rem;
    line-height: 0.24rem;
    height: 0.36rem;
}

.plasticPart4 .detail-box .tab2 li:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #e15613;
}

.plasticPart4 .detail-box .tab2 .liNow {
    color: #191c22;
}

.plasticPart4 .detail-box .tab2 .liNow:after {
    left: 0;
    width: 100%;
}

.plasticPart4 .detail-box .msgList {
    padding: 0.25rem 0 0 0.45rem;
}

.plasticPart4 .detail-box .msgList ul {
    height: 2.4rem;
    overflow: auto;
}

.plasticPart4 .detail-box .msgList ul::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: rgba(210, 210, 210, 0.48);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
}

.plasticPart4 .detail-box .msgList ul::-webkit-scrollbar-thumb {
    background-color: #e15613;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
}

.plasticPart4 .detail-box .msgList li {
    padding-left: 0.2rem;
    padding-bottom: 0.2rem;
    background: url(../images/ico1.png) left 8px no-repeat;
    font-size: 0.16rem;
    line-height: 0.24rem;
    color: #3f4150;
}

.plasticPart4 .detail-box .btnDiv {
    padding: 0.15rem 0 0 0.45rem;
}

.plasticPart4 .detail-box .btnDiv a {
    display: block;
    width: 1.38rem;
    height: 0.45rem;
    line-height: 0.45rem;
    font-size: 14px;
    text-align: center;
    color: #8c94a3;
    border: #b9c0ce solid 1px;
}

.plasticPart4 .detail-box .btnDiv a:hover {
    background: #e15613;
    border: #e15613 solid 1px;
    color: #fff;
}


.plasticPart4 .prev {
    position: absolute;
    right: 1.5rem;
    bottom: 0.5rem;
    width: 0.56rem;
    height: 0.56rem;
    box-sizing: border-box;
    border: #dadde0 solid 2px;
    border-radius: 50%;
    z-index: 5;
}

.plasticPart4 .next {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    width: 0.56rem;
    height: 0.56rem;
    box-sizing: border-box;
    border: #dadde0 solid 2px;
    border-radius: 50%;
    z-index: 5;
}

.plasticPart4 .prev:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 14px;
    margin-left: -5px;
    margin-top: -7px;
    background: url(../images/nimg9_left2.png) center no-repeat;
}

.plasticPart4 .next:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 14px;
    margin-left: -5px;
    margin-top: -7px;
    background: url(../images/nimg9_right2.png) center no-repeat;
}

.plasticPart4 .prev:hover,
.plasticPart4 .next:hover {
    border: #e15613 solid 2px;
    background: #e15613;
}

.plasticPart4 .prev:hover:before {
    background: url(../images/nimg9_left.png) center no-repeat;
}

.plasticPart4 .next:hover:before {
    background: url(../images/nimg9_right.png) center no-repeat;
}





/* 下载单元 */
.Download-item {
    border: none;
    padding: 0.3rem;
    border: 1px solid #eee;
    margin-bottom: 0.3rem;
}

.Download-item .article-title {
    font-size: 0.24rem;
    color: #000;
}

.Download-item .article-intro {
    font-size: 0.16rem;
    color: #999;
    padding-top: 0.1rem;
    display: none;
}

.Download-item .article-tag {
    font-size: 0.16rem;
    color: #999;
    padding-top: 0.05rem;
}

.Download-item .media-right a {
    display: block;
    font-size: 0.16rem;
    color: #c9182d;
    font-weight: bold;
    width: 1.6rem;
    text-align: center;
    line-height: 3;
    border: 1px solid #c9182d;
}


/* 智造能力 */


.he_b2p1brul {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    display: flex;
    margin-top: 45px;
}

.he_b2p1brli {
    width: 23.7%;
    height: 100%;
    transition: all .65s ease-out;
    /* cursor: pointer; */
    position: relative;
    overflow: hidden;
}

.he_b2p1brli::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 70.8%, rgba(0, 0, 0, 0.5) 100%), */
}

.he_b2p1brli.on {
    width: 100%;
}

.he_b2p1brli.on .he_b2p1btg {
    opacity: 0;
}

.he_syp4bx {
    width: 100%;
    position: relative;
}

.he_syp4bx .he_b2p1brul {
    height: 400px;
}

.he_syp4bx .he_b2p1brli {
    width: 50%;
}

.he_syp4bx .he_b2p1brl {
    top: 50% !important;
    transform: translateY(-50%);
}

.he_syp4yti {
    width: 100%;
    text-align: center;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all .36s .36s;
}

.he_syp4yti .g_title3 {
    color: #fff;
    font-weight: bold;
    font-size: 36px;
    line-height: 1.5;
}


.he_b2p1brul.on .he_syp4yti {
    opacity: 0;
}

.he_b2p1bx .he_b2p1brl {
    transition-delay: 0;
}

.he_b2p1brli.on .he_syp4yti {
    transition: all 0.36s;
}

/*.he_syp4bx .he_b2p1brul.on .he_b2p1brli {*/
/*    width: 16.5%;*/
/*}*/

/*.he_syp4bx .he_b2p1brul.on .he_b2p1brli.on {*/
/*    width: 67%;*/
/*}*/
.g_sypt4 {
    background-image: linear-gradient(180deg, #f2f2f2, #fff);
}

.g_sypt4 .indTitle .text {
    color: #ebebeb;
}


.g_sypt4 .he_b2p1brli {
    width: 66.666666%;
}

.g_sypt4 .he_b2p1brli.on {
    width: 57%;
}

.g_sypt4 .he_b2p1brli.on {
    width: 165%;
}

.g_foot_fir {
    margin: 0 -13px;
}

.he_syp4bx .he_c1p1b {
    padding-top: 0;
}

.g_sypt4 .he_b2p1brl {
    padding: 30px 84px;
}

.g_sypt4 .he_syp4bx .he_b2p1brp2 {
    margin-bottom: 25px;
}

.g_sypt4 .he_sydplyd {
    margin-bottom: 22px;
}

.g_sypt4 .he_syp4bx .he_c1p1b {
    padding-top: 0;
}

.he_b2p1bhtx {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 101%;
    height: 100%;
    background-size: cover;
    background-position: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.he_b2p1brl {
    width: 100%;
    position: absolute;
    top: 20px;
    left: 0;
    padding: 80px 84px;
    z-index: 10;
    opacity: 0;
    transition: all .5s ease-out;
    pointer-events: none;
    transition-delay: 0.2s;
}

.he_b2p1brli.on .he_b2p1brl {
    opacity: 1;
    top: 0;
    z-index: 10;
    pointer-events: inherit;
}


.he_b2p1brp1 .g_title3 {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
}

.he_b2p1brp2 {
    margin-bottom: 25px;
}

.he_b2p1brp2 p {
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
}

.he_sydpl {
    width: 100%;
    position: relative;
}

.he_sydplkle p {
    font-weight: bold;
    color: #fff;
    line-height: 1.75;
}

.he_c1p1b {
    margin-top: 32px;
}

.he_c1p1byt {
    display: flex;
    align-items: center;
}

.he_c1p1byle {
    padding-right: 19px;
}

.he_c1p1byle p {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

.he_b2p1bhtx video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.he_b2plkph {
    display: none;
}

.he_b2p1bhn {
    width: 100%;
    height: 100%;
    position: relative;
}

.g_sypt4 .he_b2p1brul.on .he_b2p1brli .he_syp4yti {
    opacity: 1;
}


.g_sypt4 .he_b2p1brul.on .he_b2p1brli.on .he_syp4yti {
    opacity: 0;
}

/* 加入我们 */
.campus_box {
    padding: .9rem 0;
}

.campus_box .div1 {
    display: flex;
    height: 0.76rem;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.campus_box .div1 select {
    margin-right: 0.3rem;
    flex: 1;
    height: 100%;
    background-color: #f2f5fa;
    box-sizing: border-box;
    padding: 0 0.3rem;
    font-size: 0.2rem;
}

.campus_box .div1 button {
    flex-shrink: 0;
    width: 2.4rem;
    height: 100%;
    background-color: #0d68b7;
    color: #fff;
    font-size: 0.24rem;
}

.campus_box .div2 {
    display: flex;
    height: 0.76rem;
    line-height: 0.76rem;
    background-color: #b3b3b3;
}

.campus_box .div2 span {
    flex: 1;
    height: 100%;
    font-size: 0.24rem;
    color: #fff;
    text-align: center;
}

.campus_box .div3 {}

.campus_box .div3 li {
    margin-top: 0.15rem;
}

.campus_box .div3 li .h5 {
    position: relative;
    z-index: 3;
    display: flex;
    height: 0.76rem;
    line-height: 0.76rem;
    background-color: #ebeef2;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.campus_box .div3 li .h5 span {
    flex: 1;
    height: 100%;
    font-size: 0.24rem;
    text-align: center;
}

.campus_box .div3 li .h5 span.span {}

.campus_box .div3 li .h5 span.span i {

    color: #fff;
    width: 0.3rem;
    height: 0.3rem;
    box-sizing: border-box;
    background-color: #e15613;
    border-radius: 50%;
    text-align: center;
    line-height: 0.3rem;
    transition: all 0.3s;
}

.campus_box .div3 li .dl {
    font-size: 0;
    background-color: #fff;
    box-shadow: 0px 0px 0.2rem 0px rgba(27, 27, 27, 0.22);
    padding: 0.5rem;
    display: none;
}

.campus_box .div3 li .dl dd {
    display: inline-block;
    vertical-align: top;
    width: 48%;
    margin-right: 4%;
}

.campus_box .div3 li .dl dd:nth-of-type(2n) {
    margin-right: 0;
}

.campus_box .div3 li .dl dd p {
    font-size: 0.18rem;
    color: #666;
    line-height: 1.8;
}

.campus_box .div3 li .active {
    background-color: #e15613;
    color: #fff;
}

.campus_box .div3 li .active span.span i {
    background-color: #fff;
    color: #e15613;
    transform: rotate(-180deg);
}


.campus_box .div4 {
    display: flex;
    justify-content: center;
    margin-top: 0.6rem;
}

.campus_box .div4 dd {
    flex-shrink: 0;
    width: 36%;
    box-sizing: border-box;
    padding: 0.42rem 0.3rem;
    background-color: #ebeef2;
    border-radius: 0.1rem;
    border: 1px solid #ccc;
    text-align: center;
    margin-right: 4%;
}

.campus_box .div4 dd:last-of-type {
    margin-right: 0;
}

.campus_box .div4 dd i {
    width: 0.38rem;
    font-size: .46rem;
    color: #e15613;
}

.campus_box .div4 dd h6 {
    font-size: 0.24rem;
    margin: 0.14rem 0;
}

.campus_box .div4 dd p {
    font-size: 0.2rem;
}

/* 公司简介 */
.aboutOne {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width:768px) {
    .aboutOne {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }

}

.about {
    width: 100%;
    position: relative;
}

.about:before {
    position: absolute;
    right: -38px;
    top: -36px;
    z-index: 0;
    width: 249px;
    height: 143px;
    background: url(../images/dianzhen2.png) center no-repeat;
    content: "";
}

@media (max-width:768px) {
    .about:before {
        display: none;
    }
}


.aboutPicBg {
    width: 50%;
    height: 500px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    overflow: hidden;
    text-align: center;
}


@media (max-width:768px) {
    .aboutPicBg {
        width: 100%;
        height: auto;
        position: relative;
        margin-bottom: 15px;
    }
}

.aboutPicBg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0 60px;
}


.aboutPicBg .play-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    display: flex;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.aboutPicBg .play-btn i {
    font-size: 0.3rem;
    color: #ffffff;
    background: rgba(225, 86, 19, 0.90);
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    padding-left: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;

    -webkit-animation: video-pulse-presentation 2s linear infinite;
    animation: video-pulse-presentation 2s linear infinite;

}


.aboutPicBg .play-btn i:hover {
    background-color: #FFF;
    color: #F57009
}



.aboutOther {
    width: 45%;
    float: left;
    position: relative;
    z-index: 1;
}

@media (max-width:768px) {
    .aboutOther {
        width: 100%;
    }
}


.abcate1 .en {
    font-size: 40px;
    color: #e15613;
    line-height: 48px;
    font-family: 'helvetica';
    font-weight: bold;
}

@media (max-width:768px) {
    .abcate1 .en {
        font-size: 20px;
        color: #e15613;
        line-height: 22px;
    }
}


.abcate1 .en span {
    display: inline-block;
    background-image: -webkit-gradient(linear, left top, right top, from(#e15613), to(#e79416));
    background-image: linear-gradient(to right, #e15613, #e79416);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.abcate1 .cn {
    font-size: 32px;
    color: #333;
    line-height: 42px;
    font-weight: bold;
    margin-top: 10px;
}

@media (max-width:768px) {
    .abcate1 .cn {
        font-size: 20px;
        color: #333;
        line-height: 22px;
    }
}

.aboutOther .aboutCon {
    font-size: 16px;
    color: #333;
    line-height: 34px;
    margin-top: 30px;
    overflow: auto;
}

@media (max-width:768px) {
    .aboutOther .aboutCon {
        margin-top: 15px;
    }
}


.aboutOther .aboutCon P {
    font-size: 16px;
    color: #333;
    line-height: 1.75;
    overflow: auto;
}

@media (max-width:768px) {
    .aboutOther .aboutCon P {
        font-size: 14px;
        line-height: 1.75;
    }
}


/* 数字化表达 */
.aboutBrief_datas {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.aboutBrief_datas_item {
    position: relative;
    justify-content: center;
}

@media (max-width:768px) {
    .aboutBrief_datas_item {
        width: 50%;
        padding: 15px 0;
    }
}

.aboutBrief_datas_item:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 90%;
    background-color: #e0e0e0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    display: none;
}

.aboutBrief_datas_item:last-child:after {
    display: none;
}

.aboutBrief_datas_item .data_number {
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'BAHNSCHRIFT';
    color: #e15613;
    text-align: center;
    display: flex;
    justify-content: center;
}

.aboutBrief_datas_item .data_number span {
    font-size: 2.91vw;
    text-align: center;
}

@media (max-width:768px) {
    .aboutBrief_datas_item .data_number span {
        font-size: 30px;
        text-align: center;
        font-weight: bold;
    }
}

.aboutBrief_datas_item .data_number sup {
    font-size: 1.5625vw;
    text-align: center;
    margin: 0;
    padding: 0;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
}

@media (max-width:768px) {
    .aboutBrief_datas_item .data_number sup {
        font-size: 20px;
        text-align: center;
    }
}

.aboutBrief_datas_item .data_number sub {
    font-size: 1.5625vw;
    text-align: center;
}

@media (max-width:768px) {
    .aboutBrief_datas_item .data_number sub {
        font-size: 20px;
        text-align: center;
    }
}

.aboutBrief_datas_item .data_p {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

/* 面包屑 */
.breadcrumb {
    background: none;
    padding-left: 0;
    margin-bottom: 0.1rem;
    margin-top: 0.1rem;
    animation: sonBanRun 1s ease both .6s;
    -webkit-animation: sonBanRun 1s ease both .6s;
    opacity: 0.9;
}

.breadcrumb a {
    color: #f5f5f5;
}

/*解决方案案例*/

.solution-list {
    display: block;
}

@media (max-width:768px) {
    .solution-list {
        margin-left: -0.1rem;
        margin-right: -0.1rem;
    }
}


.solution-item {
    display: block;
}

@media (max-width:768px) {
    .solution-item {
        padding-left: 0.1rem;
        padding-right: 0.1rem;
    }
}

.solution-item .card {
    border-radius: 3px;
    position: relative;
    padding: 0;
    margin: 0 auto 20px;
    -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    border: 1px solid #eee;
    min-height: 100px;
    overflow: hidden;
    background-color: #fff;
}

@media (max-width:768px) {
    .solution-item .card {
        margin: 0;
        padding: 0;
        margin-bottom: 0.2rem;
    }
}

.solution-item .card .thumb {
    position: relative;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    margin: 0;
}

@media (max-width:768px) {
    .solution-item .card .thumb {
        margin: 0;
        padding: 0;
    }
}

.solution-item .card .thumb>.preview-link::before {
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.solution-item .card .thumb>.quickview-link {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    line-height: 40px;
    text-align: center;
    z-index: 10;
    background: #e15613;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}

.solution-item .card .thumb:hover .preview-link::before {
    opacity: 1;
}

.solution-item .card .thumb:hover .quickview-link {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.solution-item .card:hover {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.solution-item .card:hover .operate .pull-right {
    display: block;
}

.solution-item .card .image {
    position: relative;
    width: 100%;
    height: 1px;
    overflow: hidden;
    padding-bottom: 75%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.solution-item .card .title {
    padding: 0;
    padding-left: 5px;
    padding-right: 5px;
}

.solution-item .card h2 {
    color: #000;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 24px;
    font-size: .16rem;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}

@media (max-width:576px) {
    .solution-item .card h2 {
        font-size: 0.28rem;
    }
}

.solution-item .card .operate {
    height: 31px;
    overflow: hidden;
}

.solution-item .card .operate .pull-right {
    display: none;
}

/* 产品单元 */

.product-item .card {
    border-radius: 3px;
    position: relative;
    padding: 12px;
    margin: 0 auto 30px;
    -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    border: 1px solid #eee;
    min-height: 110px;
    overflow: hidden;
    background-color: #fff;
}

.product-item .card .thumb {
    position: relative;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    margin: -12px;
}

.product-item .card .thumb>.preview-link::before {
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.product-item .card .thumb>.quickview-link {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    line-height: 40px;
    text-align: center;
    z-index: 10;
    background: #e15613;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}

.product-item .card .thumb:hover .preview-link::before {
    opacity: 1;
}

.product-item .card .thumb:hover .quickview-link {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.product-item .card:hover {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product-item .card:hover .operate .pull-right {
    display: block;
}

.product-item .card .image {
    position: relative;
    width: 100%;
    height: 1px;
    overflow: hidden;
    padding-bottom: 75%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.product-item .card .title {
    padding-top: 10px;
}

.product-item .card h2 {
    color: #000;
    padding: 0;
    margin-bottom: 5px;
    height: 24px;
    margin-top: 15px;
    font-size: .16rem;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}

.product-item .card .operate {
    height: 31px;
    overflow: hidden;
}

.product-item .card .operate .pull-right {
    display: none;
}



/* 下拉菜单 方式二 */
.Header-drop {
    display: none;
    position: absolute;
    background: #fff;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.Header-drop-case2 {
    width: 100%;
    background: #fff;
}

.Header-case2 .contain {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 0.3rem 0;
    min-height: 0.5rem;
    width: 1400px;
}

.Header-case2 .contain::after {
    content: "";
    position: absolute;
    width: calc(100vw - 288px + (1400px - 100vw)/2);
    height: 100%;
    right: calc((1400px - 100vw)/2);
    top: 0;
    background: #fff url('../images/common/dropBg.png') no-repeat right bottom -204px/632px auto;
}

.Header-case2-menu {
    width: 288px;
    position: relative;
    z-index: 6;
}

.Header-case2-menu .link {
    width: 100%;
    cursor: pointer;
    margin-top: 5px;
    display: flex;
    height: 50px;
    color: #333;
    align-items: center;
    transition: all .6s ease;
    position: relative;
    padding-left: 20px;
}

.Header-case2-menu .link:first-child {
    margin-top: 0;
}

.Header-case2-menu .link span {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 3;
}

.Header-case2-menu .link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: #e15613;
    z-index: 1;
    opacity: 0;
    transition: all .4s ease;
}

.Header-case2-menu .link::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 18px;
    top: 50%;
    margin-top: -9px;
    right: 8px;
    transform: scale(0);
    background: url('../images/common/dropIcon.png') no-repeat center/100% auto;
    z-index: 2;
    opacity: 0;
    transition: all .4s ease;
}

.Header-case2-menu .link.active {
    color: #fff;
}

.Header-case2-menu .link.active::before {
    width: calc(100% + 32px);
    opacity: 1;
}

.Header-case2-menu .link.active::after {
    opacity: 1;
    transform: scale(1);
}


.Header-case2-mix {
    width: 100%;
    position: relative;
    z-index: 6;
}

.Header-case2-items {
    width: 100%;
    display: none;
}

.Header-case2-items.active {
    display: block;
}

.Header-case2-ul {
    display: flex;
    flex-wrap: wrap;
}

.Header-case2-li {
    width: 20%;
    padding: 0.15rem;
    overflow: hidden;
    position: relative;
    min-height: 0.5rem;
}

.Header-case2-items:nth-child(2) .Header-case2-ul,
.Header-case2-items:nth-child(4) .Header-case2-ul {
    margin: -20px 0 0 -20px;
}

.Header-case2-items:nth-child(2) .Header-case2-li,
.Header-case2-items:nth-child(4) .Header-case2-li {
    width: calc(20% - 20px);
    margin: 20px 0 0 20px;
}

.Header-case2-li-name {
    display: flex;
    width: 100%;
    height: 32px;
    position: relative;
    line-height: 0.32rem;
    font-size: 18px;
    font-weight: 500;
    height: 0.4rem;
    padding-bottom: 0.1rem;
    z-index: 10;
}

.Header-case2-li-name i {
    font-size: 0.30rem;
    padding-right: 0.08rem;
    display: none;
}

.Header-case2-li-name span {
    padding-right: 20px;
    color: #333;
    background: url('../images/common/arrRC.svg') no-repeat right -2px center/18px auto;
    transition: all .4s ease;
}

.Header-case2-li-name::before,
.Header-case2-li-name::after {
    content: "";
    position: absolute;
    height: 1px;
    right: 0;
    bottom: 0;
}

.Header-case2-li-name::before {
    width: 100%;
    background: #dcdcdc;
}

.Header-case2-li-name::after {
    width: 0;
    background: #e15613;
    opacity: 0;
    transition: width .4s ease, opacity .1s ease .4s;
}


.Header-case2-li-name:hover span {
    color: #e15613;
    background-image: url('../images/common/arrRH.svg');
}

.Header-case2-li-name:hover i {
    color: #e15613;
}

.Header-case2-li-name:hover::after {
    width: 100%;
    opacity: 1;
    right: auto;
    left: 0;
    transition: width .4s ease .1s, opacity .1s ease;
}

.Header-case2-li-more {
    width: 100%;
    margin-top: 12px;
    position: relative;
    z-index: 10;
    display: none;
}

.Header-case2-li-more .items {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.Header-case2-li-more .items a {
    display: flex;
    align-items: center;
    line-height: 26px;
    padding-right: 16px;
    font-size: 15px;
    color: #666;
    transition: all .4s ease;
    width: auto;
    min-width: 50%;
    position: relative;
}

.Header-case2-li-more .items a i {
    padding-right: 0.03rem;
}

.Header-case2-li-more .items a.name {
    min-height: 36px;
    line-height: normal;
}

.Header-case2-li-more .items .name {
    position: relative;
}

.Header-case2-li-more .items .arrow {
    display: block;
    width: 36px;
    height: 36px;
    pointer-events: none;
    position: absolute;
    z-index: 4;
    right: 0;
    top: 0;
    background: url('../images/common/arrD.svg') no-repeat center/16px auto;
}

.Header-case2-li-more .items .arrow.active {
    transform: rotate(180deg);
}

.Header-case2-li-more .items .drop {
    width: 100%;
    display: none;
}

.Header-case2-li-more .items .drop a {
    position: relative;
    padding-left: 10px;
}

.Header-case2-li-more .items .drop a::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 1px;
    background: #666;
    left: 0;
    top: 12px;
    transition: all .4s ease;
}

.Header-case2-li-more .items a:hover {
    color: #e15613;
    transform: translateX(5px);
}

.Header-case2-li-more .items .drop a:hover::before {
    background: #e15613;
}

.Header-case2-li:hover {
    background-color: #f5f5f5;
}

/* .Header-case2-li:hover .Header-case2-li-more .items a{
            color: #fff;
        }

        .Header-case2-li:hover .Header-case2-li-more .items a{
            color: #fff;
        } */

.Header-case2-li .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.Header-case2-li .bg i {
    display: none;
    font-size: 0.3rem;
    position: absolute;
    bottom: 0rem;
    right: 0rem;
    color: #e15613;
    opacity: 0;
    transition: all .4s ease;
}


.Header-case2-li:hover .bg i {
    opacity: 0.15;
    transition: all .4s ease;
}


/* .Header-case2-li:nth-child(2n+1){
            background: #f5f5f5;
        } */



/* 首页轮播图 */
.ibanner {
    width: 100%;
    height: 100vh;
}

@media (max-width:768px) {
    .ibanner {
        width: 100%;
        min-height: 400px;
        height: calc(100vh - 60px);
    } 
}


.ibanner .swiper-text {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ibanner .swiper-text h1 {
    font-size: 50px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #fff;
}

.ibanner .swiper-text h2 {
    font-size: 19px;
    color: #bdc3ea;
    margin-bottom: 30px;
}

.ibanner .ibanner-pagination {
    bottom: 20px;
}

.ibanner .swiper-pagination-bullet-active {
    opacity: 1 !important;
}

.ibanner .swiper-pagination-bullet {
    display: inline-block;
    width: 30px;
    height: 4px;
    opacity: .5;
    border-radius: 0;
    background: #fff;
    margin: 0 3px;
    cursor: pointer;
    transition: width 0.3s ease-in-out;
}

.ibanner .swiper-button-next,
.ibanner .swiper-button-prev {
    font-size: 40px;
    color: #fff;
}

.ibanner .swiper-button-next {
    margin-right: 10px;
}

.ibanner .swiper-slide {
    position: relative;
    overflow: hidden;
}

.ibanner .swiper-slide .ibanner-bg {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 10s ease;
    position: relative;
}

.ibanner .swiper-slide .ibanner-bg::after {
    content: "";
    position: absolute;
    background: #000;
    height: 100%;
    width: 100%;
    opacity: 0.35;
}

.ibanner .swiper-slide.swiper-slide-active .ibanner-bg {
    transform: scale(1.2, 1.2);
}

.ibanner .swiper-slide .swiper-slide-item {
    position: absolute;
    top: 50%;
    right: 20%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 2s;
}

.ibanner .swiper-slide.swiper-slide-active .swiper-slide-item {
    opacity: 1;
    transform: translateY(0);
}

.ibanner .swiper-slide .swiper-slide-item {
    top: 35%;
    left: 15%;
}

@media (max-width:768px) {
    .ibanner .swiper-slide .swiper-slide-item {
        top: 30%;
    }
}


.ibanner .swiper-slide .swiper-slide-item h2 {
    font-size: 0.46rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

@media (max-width:768px) {
    .ibanner .swiper-slide .swiper-slide-item h2 {
        font-size: 0.4rem;
    }
}

.ibanner .swiper-slide .swiper-slide-item .text {
    font-size: 0.18rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.3rem;
    line-height: 1.75;
}

.ibanner .swiper-slide .swiper-slide-item .text i {
    color: #fff;
}

.ibanner .swiper-slide .swiper-slide-item h4 {
    font-size: 0.46rem;
    font-weight: 600;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .ibanner .swiper-text h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .ibanner .swiper-text h2 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .ibanner .swiper-slide .swiper-slide-item {
        width: 400px;
    }
}

@media only screen and (max-width: 600px) {
    .ibanner .swiper-text {
        top: 60%;
    }

    .ibanner .swiper-text h1 {
        font-size: 25px;
    }

    .ibanner .swiper-text h2 {
        font-size: 12px;
    }

    .ibanner .ibanner-pagination {
        bottom: 0.3rem;
    }

    .ibanner .swiper-slide .swiper-slide-item {
        width: 90%;
        right: 5%;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* 发展历程 */
.fzlc-section {
    background-image: url(../images/fzlc-section-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed
}

.fzlc-section .container {
    background-color: rgba(255, 255, 255, 0.88);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}


/* 内容窄屏 */
html#narrowScreen .Container-wrapper {
    background-image: url(../images/fzlc-section-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

@media (max-width:576px) {
    html#narrowScreen .Container-wrapper {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }
}


html#narrowScreen .Container-wrapper>.container {
    background-color: rgba(255, 255, 255, 0.99);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
}


/* 窄banner 实现 */
.sonBan-narrow .sonBan {
    height: 155px;
    overflow: hidden;
}

@media (max-width:1000px) {
    .sonBan-narrow .sonBan {
        height: 130px;
        overflow: hidden;
    }
}

@media (max-width:768px) {
    .sonBan-narrow .sonBan {
        height: 105px;
        overflow: hidden;
    }
}

.sonBan-narrow .sonBan .sonBan-cont {
    display: none;
}


/* 内页 合作伙伴 */
.brand-container_v2 .brand-wrapper .brand-slide {
    width: 12.5%;
    padding: 5px;
}

@media (max-width:768px) {
    .brand-container_v2 .brand-wrapper .brand-slide {
        width: 25%;
        padding: 0.02rem;
    }
}

/* 内页 行业分布-解决方案 */
.page-hyfb .box0 {
    margin-top: 45px;
}

.page-hyfb .box0 .item {
    width: 49.5%;
    box-sizing: border-box;
    padding: 0.4rem 0.6rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 0.05rem #f2f2f2;
    transition: 0.4s;
    position: relative;
    margin-bottom: 0.15rem;
    overflow: hidden;
}

.page-hyfb .box0 .item a {
    font-size: 0.18rem;
    text-align: center;
}

.page-hyfb .box0 .item a i {
    font-size: 0.9rem;
    height: 68px;
    line-height: 68px;
}

.page-hyfb .box0 .item a .col-right {
    text-align: left;
    display: flex;
}

.page-hyfb .box0 .item a h3 {
    font-size: 0.24rem;
    margin-bottom: 0.1rem;
    line-height: 1;
}

.page-hyfb .box0 .item a p {
    font-size: 0.16rem;
    color: #999;
    line-height: 1;
    margin-bottom: 0.1rem;
}

.page-hyfb .box0 .item:hover {
    background-color: #e15613;
}

.page-hyfb .box0 .item:hover h3,
.page-hyfb .box0 .item:hover p,
.page-hyfb .box0 .item:hover i {
    color: #fff;
}



.page-hyfb .box {
    margin-top: 0.3rem;
}

.page-hyfb .box .item {
    width: 32.5%;
    box-sizing: border-box;
    padding: 0.4rem 0.6rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 0.05rem #f2f2f2;
    transition: 0.4s;
    position: relative;
    margin-bottom: 0.15rem;
    overflow: hidden;
}

@media (max-width:768px) {
    .page-hyfb .box .item {
        width: 49%;
        margin-bottom: 2%;
        height: 3.6rem;
    }
}

.page-hyfb .box .item .a .content1 i {
    font-size: 68px;
    height: 68px;
    line-height: 68px;

}

.page-hyfb .box .item .a .content2 {
    font-size: 0.3rem;
    color: #000;
    margin-top: 0.15rem;
    transition: 0.4s;
}

.page-hyfb .box .item .a .content3 {
    margin: 0.22rem 0;
}

.page-hyfb .box .item .a .content3 span {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #eeeeee;
}

.page-hyfb .box .item .a .content4 {
    font-size: 0.16rem;
    color: #555;
    line-height: 2;
    height: 0.7rem;
}

.page-hyfb .box .item .a .content5 {
    font-weight: bold;
    margin-top: 0.6rem;
    font-size: 0.16rem;
    color: #e15613;
    font-family: 'gilroy_bold';
    line-height: 2;
    display: none;
}

.page-hyfb .box .item .a .content5 i {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    top: 1px;
}

.page-hyfb .box .item .posi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: 0.4s;
}

.page-hyfb .box .item .posi .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hyfb .box .item .posi .posi_main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    box-sizing: border-box;
    padding: 0 0.6rem;
    background: rgba(0, 0, 0, 0.55);
}

@media (max-width:768px) {
    .page-hyfb .box .item .posi .posi_main {
        padding: 0 0.4rem;
    }
}

.page-hyfb .box .item .posi .posi_main .content2 {
    font-size: 0.3rem;
    color: #fff;
    margin-top: 0.30rem;
    transition: 0.4s;
}

.page-hyfb .box .item .posi .posi_main .content3 {
    margin: 0.15rem 0;
}

.page-hyfb .box .item .posi .posi_main .content3 span {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #e15613;
    vertical-align: middle;
}

.page-hyfb .box .item .posi .posi_main .content4 {
    font-size: 0.16rem;
    color: #fff;
    line-height: 2;
    height: 0.7rem;
    display: none;
}

.page-hyfb .box .item .posi .posi_main .content5 {
    margin-top: 0.15rem;
    font-size: 0.16rem;
    color: #fff;
    font-family: 'gilroy_bold';
    line-height: 2;
    display: none;
}

.page-hyfb .box .item .posi .posi_main .content5 a {
    color: #fff;
}

.page-hyfb .box .item .posi .posi_main .content6 {
    margin-top: 0.3rem;
    padding-top: 0.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hyfb .box .item .posi .posi_main .content6 .item_ {
    width: 50%;
    font-size: 0.16rem;
    margin-bottom: 0.15rem;
    color: #fff;
}

@media (max-width:576px) {
    .page-hyfb .box .item .posi .posi_main .content6 .item_ {
        font-size: 0.22rem;
    }
}

.page-hyfb .box .item .posi .posi_main .content6 .item_ a {
    color: #fff;
    cursor: auto;
}


.page-hyfb .box .item .posi .posi_main .content6 .item_ a i {
    display: none;
}

.page-hyfb .box .item .posi .posi_main .content6 .item_ img {
    margin-right: 0.625rem;
    vertical-align: middle;
}

.page-hyfb .box .item:hover {
    box-shadow: 0px 0px 0.16rem #ddd;
}

.page-hyfb .box .item:hover .posi {
    opacity: 1;
}



/* 股票走势 */


.gupiao01 .rect-105 {
    height: 0;
    padding-bottom: 105%;
}

.gupiao01 .left {
    display: block;
}

@media (max-width:576px) {
    .gupiao01 .left {
        display: block;
        margin-bottom: 0.3rem;
    }
}



.gupiao01 .right .r_top {
    height: 262px;
    padding-left: 47px;
    overflow: hidden;
}

#gupiao_info {
    padding: 45px 30px 50px 30px;
    border-radius: 7px;
    background: #f1f1f1;
}

@media (max-width:576px) {
    #gupiao_info {
        padding: 0.4rem 0.3rem;
    }
}


#gupiao_info .stock {
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e1e2;
}

#gupiao_info .stock .name,
#gupiao_info .stock .stock_code {
    font-size: 18px;
    color: #3c3c3c;
    margin-right: 6px;
    display: inline-block;
}

#gupiao_info .stock .stock_num_con {
    padding-top: 15px;
}

#gupiao_info .stock .stock_num {
    font-size: 51px;
    line-height: 51px;
    color: #ff0000;
    font-family: Arial;
    margin-left: 0;
    line-height: 1;

}

#gupiao_info .stock .stock_num i {
    margin-left: 10px;
    width: 17px;
    height: 23px;
    background: url(/template/default/images/gupiao01_1.png) no-repeat;
    display: inline-block;
}

#gupiao_info .stock .stock_num i span {
    display: none;
}

#gupiao_info .stock .stock_num i.up {
    background-position: 0 0;
}

#gupiao_info .stock.down .stock_num i {
    background-position: 0 -23px;
}

#gupiao_info .stock.down .stock_num {
    color: #008000;
}

#gupiao_info .stock.down .number .num {
    color: #008000;
}

#gupiao_info .stock.unchange .stock_num i {
    background: none
}

#gupiao_info .stock.unchange .stock_num i span {
    display: inline-block;
}

#gupiao_info .stock .number {
    display: inline-block;
    margin-left: 21px;
}

#gupiao_info .stock .number .num {
    font-size: 14px;
    color: #ff0000;
    font-family: Arial;
}

#gupiao_info .information {
    padding-top: 36px;
}

@media (max-width:576px) {
    #gupiao_info .information {
        padding-top: 0.36rem;
    }

}

#gupiao_info .information ul {
    width: 100%;
    transition: .2s width ease;
    *zoom: 1;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 20px;
}

#gupiao_info .information li {
    margin-bottom: 24px;
    list-style: none;

}

@media (max-width:576px) {
    #gupiao_info .information li {
        width: 50%;
        margin-bottom: 0.24rem;
    }
}

#gupiao_info .information li .t {
    font-size: 15px;
    color: #787878;
}

#gupiao_info .information li .c {
    font-size: 32px;
    color: #1d314e;
    font-family: Arial;
}

@media (max-width:576px) {
    #gupiao_info .information li .c {
        font-size: 0.6rem;
    }
}


#gupiao_info .information .date {
    font-size: 13px;
    color: #b9b9b9;
}

#gupiao_info .information .date .time {
    padding: 0 7px 0 4px;
}

.gupiao01 .right .r_bott {
    padding-top: 0;
}

.gupiao01 .right .r_bott .rect-58 {
    height: 0;
    padding-bottom: 58%;
}

.gupiao01 .right .r_bott .tab_t_box {
    margin-bottom: 15px;
    text-align: center;
}

.gupiao01 .right .r_bott .tab_t_box .tab_t {
    width: 20%;
    line-height: 32px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border-bottom: 2px solid transparent;

}

.gupiao01 .right .r_bott .tab_t_box .tab_t.on {
    color: #00509f;
    border-bottom-color: #2e4d87;
    color: #2e4d87
}

.gupiao01 .right .r_bott .tab_c_box {
    padding: 25px;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width:576px) {
    .gupiao01 .right .r_bott .tab_c_box {
        padding-left: 0;
        padding-right: 0;
    }
}

.gupiao01 .right .r_bott .tab_c {
    opacity: 1;
    visibility: visible;
    text-align: center;
}

/* 手机版头部导航菜单 */

.active-btn{padding:0.1rem ;width: 100%;height: auto;margin: 0px auto;box-sizing:border-box; position: absolute; top: 60px; z-index: 100; display: none;}
@media (max-width:768px) {
    .active-btn{ display: block;}
}
.active-btn .active-btnC{width: 100%;margin:0px auto;overflow: auto;}
.active-btn .active-btnC span{display: block;width: 33.33%; height: 0.8rem;float: left;box-sizing:border-box; padding: 0.1rem;}
.active-btn .active-btnC span a{width: 100%;height:0.6rem;line-height:  0.6rem;display: block;border-radius: 3px;background-size: 100% 100%;text-align: center;font-size: 0.32rem;color:#fff; border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(0, 0, 0, 0.1);}
 


/* 手机版底部菜单 */
.footer-fix {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 10;
    max-height: 60px;
    height: 60px;
    justify-content: space-around;
    align-items: center;
    display: none;
    
}


@media (max-width: 991px) {
	.footer-fix {
		display: block;
        display: flex;

	}
}

.footer-fix ul{
    width: 100%;
}

.footer-fix li {
	float: left;
	width: 25%;
}

.footer-fix li a {
	display: block;
	text-align: center;
	padding: 7px 0;
	font-size: 0.26rem;
	line-height: 1;
}

.footer-fix li i {
	display: block;
	height: 20px;
    font-size: 0.38rem;
	background: no-repeat center;
	background-size: contain;
	margin-bottom: 0.1rem;
}

/* .footer-fix li i.i1 {
	background-image: url(../images/f_01.png);
}

.footer-fix li i.i2 {
	background-image: url(../images/f_02.png);
}

.footer-fix li i.i3 {
	background-image: url(../images/f_03.png);
}

.footer-fix li i.i4 {
	background-image: url(../images/f_04.png);
} */